kinit/kinit-uni/App.vue
2022-12-04 21:42:59 +08:00

22 lines
395 B
Vue

<script>
import config from './config'
import { getToken } from '@/common/utils/auth'
export default {
onLaunch: function() {
this.initApp()
},
methods: {
// 初始化应用
initApp() {
// 初始化应用配置
this.$store.dispatch('InitConfig')
}
}
}
</script>
<style lang="scss">
@import '@/static/scss/index.scss';
</style>