xlcs/atguigu-tuan/App.vue

24 lines
413 B
Vue
Raw Normal View History

2023-09-22 15:41:37 +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">
/* 注意要写在第一行同时给style标签加入lang="scss"属性 */
@import "./common/css/iconfont.css";
@import "uview-ui/index.scss";
page {
height: 100%;
}
</style>