2025-04-16 02:11:26 +01:00

33 lines
626 B
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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">
//引入vuiew的样式
@import "@/uni_modules/uview-ui/index.scss";
//自定icon图标的方式请参考https://blog.csdn.net/qq_42638799/article/details/133982900
@import "@/common/css/iconfont.css";
//引入自定义布局类
@import "@/common/css/layout.scss";
//页面公用scss
/*#ifndef APP-NVUE*/
page {
background-color: $u-bg-color;
}
/*#endif*/
</style>