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

<script>
	export default {
		methods: {
杜庆泉's avatar
杜庆泉 已提交
10
			exitAppClick:function(){
杜庆泉's avatar
杜庆泉 已提交
11 12 13 14 15
				uni.exit({
					success:function(res){
						console.log(res)
					}
				})
杜庆泉's avatar
杜庆泉 已提交
16 17 18 19 20 21 22 23
			}
		}
	}
</script>

<style>

</style>