personal.vue 402 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <view>
  3. <u-button type="primary" text="退出登录" @click="exitLogin()"></u-button>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. }
  11. },
  12. methods: {
  13. exitLogin() {
  14. uni.removeStorageSync("token")
  15. uni.removeStorageSync("info")
  16. uni.removeStorageSync("menu")
  17. this.$common.to('/pages/login/login')
  18. }
  19. }
  20. }
  21. </script>
  22. <style>
  23. </style>