user.vue 481 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <view class="content">
  3. <view class="btn-row">
  4. <button type="default" @tap="bindLogout">退出登录</button>
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. import {
  10. mapState,
  11. mapMutations
  12. } from 'vuex'
  13. export default {
  14. computed: {
  15. },
  16. methods: {
  17. bindLogout() {
  18. uni.reLaunch({
  19. url: '/pages/Login/Login',
  20. });
  21. }
  22. }
  23. }
  24. </script>
  25. <style>
  26. </style>