123456789101112131415161718192021222324252627282930 |
- <template>
- <view class="content">
- <view class="btn-row">
- <button type="default" @tap="bindLogout">退出登录</button>
- </view>
- </view>
- </template>
- <script>
- import {
- mapState,
- mapMutations
- } from 'vuex'
- export default {
- computed: {
- },
- methods: {
- bindLogout() {
- uni.reLaunch({
- url: '/pages/Login/Login',
- });
- }
- }
- }
- </script>
- <style>
- </style>
|