SEC_Warehouse/App.vue

21 lines
306 B
Vue

<script>
import { ensureCurrentPageAuth } from './utils/auth'
export default {
onLaunch() {
console.log('App Launch')
},
onShow() {
console.log('App Show')
ensureCurrentPageAuth()
},
onHide() {
console.log('App Hide')
}
}
</script>
<style>
/*每个页面公共css */
</style>