This commit is contained in:
2026-07-20 11:56:02 +08:00
commit 2dcae4165b
176 changed files with 34633 additions and 0 deletions

33
App.vue Normal file
View File

@@ -0,0 +1,33 @@
<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">
@import "@/uni_modules/uv-ui-tools/index.scss";
page {
background: #f4faff;
color: #1f2329;
font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}
view,
scroll-view,
swiper,
swiper-item,
button,
input,
textarea {
box-sizing: border-box;
}
</style>