2023-08-12 15:44:27 +00:00
|
|
|
<script>
|
2024-01-17 13:10:35 +00:00
|
|
|
|
2023-08-12 15:44:27 +00:00
|
|
|
export default {
|
|
|
|
|
onLaunch: function () {
|
|
|
|
|
console.log('App Launch')
|
|
|
|
|
},
|
|
|
|
|
onShow: function () {
|
|
|
|
|
console.log('App Show')
|
|
|
|
|
},
|
|
|
|
|
onHide: function () {
|
|
|
|
|
console.log('App Hide')
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
@import "uview-plus/index.scss";
|
|
|
|
|
@import '@/static/scss/index.scss';
|
|
|
|
|
</style>
|