43 lines
584 B
Vue
43 lines
584 B
Vue
<template>
|
|
<view>
|
|
<view class="androidwx">
|
|
321312
|
|
</view>
|
|
<view class="androidwx">
|
|
321312
|
|
</view>
|
|
<view class="androidwx">
|
|
321312
|
|
</view>
|
|
<view class="androidwx">
|
|
321312
|
|
</view>
|
|
<view class="androidwx">
|
|
321312
|
|
</view>
|
|
<view class="androidwx">
|
|
321312
|
|
</view>
|
|
<view class="androidwx">
|
|
321312
|
|
</view>
|
|
<button type="default" @click="onOut">退出登录</button>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
onOut(){
|
|
this.$store.commit('setToken', '')
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|