木邻有你前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

23 lines
406 B

<script>
export default {
onLaunch() {
// 请求初始化一切配置
console.log('App OnLaunch')
},
async onShow() {
console.log('App Show')
await this.$store.dispatch('initData')
// console.log('配置数据初始化完成')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style lang="scss">
// @import '@/uni_modules/uv-ui-tools/index.scss';
</style>