29 lines
560 B
Vue
29 lines
560 B
Vue
<script>
|
|
import { setCurrentRoute } from '@/utils/auth.js'
|
|
|
|
export default {
|
|
onLaunch: function() {
|
|
console.log('App Launch')
|
|
},
|
|
onShow: function() {
|
|
console.log('App Show')
|
|
},
|
|
onHide: function() {
|
|
console.log('App Hide')
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
/* 全局样式 */
|
|
page {
|
|
background-color: #F8F8F8;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
|
|
}
|
|
|
|
/* 去除button默认边框 */
|
|
button::after {
|
|
border: none;
|
|
}
|
|
</style>
|