22 lines
397 B
Vue
22 lines
397 B
Vue
<script setup>
|
|
import { onLaunch, onShow, onError } from '@dcloudio/uni-app'
|
|
import { peachInit } from './peach'
|
|
|
|
onLaunch(() => {
|
|
peachInit()
|
|
})
|
|
|
|
onError((err) => {
|
|
console.log('AppOnError:', err)
|
|
})
|
|
|
|
onShow((options) => {
|
|
console.log('AppOnShow:', options)
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
/*每个页面公共css */
|
|
@import '@/peach/scss/index.scss';
|
|
</style>
|