123456789101112131415161718192021222324252627 |
- <template>
- <view>
- <u-button type="primary" text="退出登录" @click="exitLogin()"></u-button>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
- exitLogin() {
- uni.removeStorageSync("token")
- uni.removeStorageSync("info")
- uni.removeStorageSync("menu")
- this.$common.to('/pages/login/login')
- }
- }
- }
- </script>
- <style>
- </style>
|