suta/App.vue
2024-05-11 10:06:09 +08:00

19 lines
393 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">
/* 注意要写在第一行同时给style标签加入lang="scss"属性 */
@import "uview-ui/index.scss";
</style>