初始化 uniapp 小程序

This commit is contained in:
YunaiV
2021-11-24 23:33:06 +08:00
parent e2b76ee0e5
commit 6c4908e70e
85 changed files with 12478 additions and 0 deletions

19
yudao-vue-ui/App.vue Normal file
View File

@ -0,0 +1,19 @@
<script>
export default {
onLaunch: function() {
console.log('App Launch')
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style>
/*每个页面公共css */
@import url("./common/css/common.css");
@import url("./common/css/icon.css");
</style>