uni-app引入使用uView

This commit is contained in:
sfmind
2022-04-06 16:08:26 +08:00
parent 9ae44336db
commit 9709f200c2
386 changed files with 38777 additions and 0 deletions

25
yudao-ui-app/App.vue Normal file
View File

@ -0,0 +1,25 @@
<script>
export default {
onLaunch: function() {
console.log('App Launch')
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style lang="scss">
/* 引入uView基础样式 */
@import "@/uni_modules/uview-ui/index.scss";
/*每个页面公共css */
.container {
background-color: $uni-bg-color;
box-sizing: border-box;
height: 100%;
}
</style>