mirror of
https://gitee.com/dcloud/uni-preset-vue
synced 2025-04-10 15:53:05 +08:00
20 lines
387 B
Vue
Executable File
20 lines
387 B
Vue
Executable File
<script lang="ts">
|
|
import Vue from 'vue';
|
|
export default Vue.extend({
|
|
mpType: 'app',
|
|
onLaunch() {
|
|
console.log('App Launch')
|
|
},
|
|
onShow() {
|
|
console.log('App Show')
|
|
},
|
|
onHide() {
|
|
console.log('App Hide')
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style>
|
|
/*每个页面公共css */
|
|
</style>
|