28 lines
558 B
Vue
28 lines
558 B
Vue
<script>
|
|
import { onLaunch, onShow, onHide } from 'uni-app'
|
|
import uniIdPageInit from '@/pages3/uni_modules/uni-id-pages/init.js'
|
|
|
|
export default {
|
|
setup() {
|
|
onLaunch(async () => {
|
|
console.log('App Launch')
|
|
await uniIdPageInit()
|
|
})
|
|
onShow(() => {
|
|
console.log('App Show')
|
|
})
|
|
onHide(() => {
|
|
console.log('App Hide')
|
|
})
|
|
return {}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import "@/uni.scss";
|
|
@import '@/uni_modules/uview-ui/theme.scss';
|
|
@import '@/uni_modules/uview-ui/index.scss';
|
|
/*每个页面公共css */
|
|
</style>
|