mall-app-b/App.vue

23 lines
447 B
Vue
Raw Permalink Normal View History

2024-04-30 17:45:03 +08:00
<script setup>
import { onLaunch, onShow, onError } from '@dcloudio/uni-app'
import { peachInit } from './peach'
onLaunch(() => {
2024-05-20 01:18:27 +08:00
// 隐藏原生导航栏 使用自定义底部导航
peachInit()
2024-04-30 17:45:03 +08:00
})
onError((err) => {
2024-05-20 01:18:27 +08:00
console.log('AppOnError:', err)
2024-04-30 17:45:03 +08:00
})
onShow((options) => {
2024-05-20 01:18:27 +08:00
console.log('AppOnShow:', options)
2024-04-30 17:45:03 +08:00
})
</script>
<style lang="scss">
/*每个页面公共css */
@import '@/peach/scss/index.scss';
</style>