This commit is contained in:
hupeng
2023-10-11 11:27:47 +08:00
commit d0b337c596
659 changed files with 67106 additions and 0 deletions

24
App.vue Normal file
View File

@ -0,0 +1,24 @@
<script>
export default {
onLaunch: function () {
console.log('App Launch')
},
onShow: function () {
console.log('App Show')
},
onHide: function () {
console.log('App Hide')
}
}
</script>
<style lang="less">
@import url('./static/style/style.less');
/*每个页面公共css */
page {
background-color: #f5f5f5;
}
</style>