1 Star 0 Fork 24

刘振岗/网赚游戏管理后台

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
App.vue 770 Bytes
一键复制 编辑 原始数据 按行查看 历史
崔红保 提交于 2021-02-19 14:27 . 新增积分记录
<script>
import {
mapGetters,
mapActions
} from 'vuex'
import config from '@/admin.config.js'
export default {
computed: {
...mapGetters({
isTokenValid: 'user/isTokenValid'
})
},
methods: {
...mapActions({
init: 'app/init'
})
},
onPageNotFound(msg) {
uni.redirectTo({
url: config.error.url
})
},
onLaunch: function() {
console.log('App Launch')
if (!this.isTokenValid) {
uni.redirectTo({
url: config.login.url
})
} else {
this.init()
}
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style>
@import '@/common/uni.css';
@import '@/common/uni-icons.css';
</style>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/liu_zhengang/money-game-admin.git
git@gitee.com:liu_zhengang/money-game-admin.git
liu_zhengang
money-game-admin
网赚游戏管理后台
master

搜索帮助