exit.uvue 254 字节
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
				uni.exit()
杜庆泉's avatar
杜庆泉 已提交
17 18 19 20 21 22 23 24
			}
		}
	}
</script>

<style>

</style>