dykj-outsource-12123/App.vue

19 lines
320 B
Vue
Raw Permalink Normal View History

2024-06-25 18:39:10 +08:00
<script>
2024-06-26 14:46:13 +08:00
export default {
onLaunch: function () {
console.log('App Launch');
},
onShow: function () {
console.log('App Show');
},
onHide: function () {
console.log('App Hide');
}
};
2024-06-25 18:39:10 +08:00
</script>
2024-06-27 16:42:05 +08:00
<style lang="scss">
@import '@/uni_modules/uview-plus/index.scss';
2024-06-26 14:46:13 +08:00
/*每个页面公共css */
2024-06-25 18:39:10 +08:00
</style>