1 Star 0 Fork 12

刘振岗/猜歌游戏管理端

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
App.vue 870 Bytes
一键复制 编辑 原始数据 按行查看 历史
孟磊 提交于 2021-04-13 09:30 . 切换目录
<script>
import {
mapGetters,
mapActions
} from 'vuex'
import config from '@/admin.config.js'
import { version } from './package.json'
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')
console.log('uniCloud admin 当前版本号:', version)
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 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liu_zhengang/song-guessing-game-admin.git
git@gitee.com:liu_zhengang/song-guessing-game-admin.git
liu_zhengang
song-guessing-game-admin
猜歌游戏管理端
master

搜索帮助