museum-H5/App.vue

20 lines
310 B
Vue
Raw Normal View History

2023-12-19 08:51:52 +00:00
<script>
2023-12-20 11:14:20 +00:00
export default {
onLaunch: function () {
console.log('App Launch')
},
onShow: function () {
console.log('App Show')
2023-12-22 02:20:00 +00:00
console.log(1111)
2023-12-20 11:14:20 +00:00
},
onHide: function () {
console.log('App Hide')
2023-12-19 08:51:52 +00:00
}
2023-12-20 11:14:20 +00:00
}
2023-12-19 08:51:52 +00:00
</script>
2023-12-20 11:14:20 +00:00
<style lang="scss">
/*每个页面公共css */
@import "uview-plus/index.scss";
2023-12-19 08:51:52 +00:00
</style>