exit.uvue 319 字节
Newer Older
杜庆泉's avatar
杜庆泉 已提交
1 2
<template>
	<view>
杜庆泉's avatar
杜庆泉 已提交
3
		<button @tap="exitAppClick">退出应用</button>
杜庆泉's avatar
杜庆泉 已提交
4 5 6 7 8 9 10 11 12 13 14
	</view>
</template>

<script>
	export default {
		data() {
			return {
				
			}
		},
		methods: {
杜庆泉's avatar
杜庆泉 已提交
15
			exitAppClick:function(){
杜庆泉's avatar
杜庆泉 已提交
16 17 18 19 20
				uni.exit({
					success:function(res){
						console.log(res)
					}
				})
杜庆泉's avatar
杜庆泉 已提交
21 22 23 24 25 26 27 28
			}
		}
	}
</script>

<style>

</style>