Files

24 lines
434 B
Vue
Raw Normal View History

2022-09-13 18:23:31 +08:00
<script>
export default {
onLaunch: function() {
console.log('App Launch')
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style lang="scss">
/*每个页面公共css */
/* 注意要写在第一行同时给style标签加入lang="scss"属性 */
@import "@/uni_modules/uview-ui/index.scss";
2022-09-14 16:15:22 +08:00
// * {
// box-sizing: border-box;
// }
2022-09-13 18:23:31 +08:00
</style>