first commit

This commit is contained in:
编码猿
2024-09-27 02:06:13 +08:00
commit 852d94fbb9
36760 changed files with 3274413 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
<template>
<div id="app">
<router-view />
<TabbarComponents v-if="showTabbar"></TabbarComponents>
</div>
</template>
<script>
import TabbarComponents from "@/components/Tabbar"
export default {
// 注意: 不要大量使用,会导致数据传递混乱
provide () {
return {
close: this.CloseTabbar,
open: this.OpenTabbar
}
},
data() {
return {
showTabbar: true
}
},
methods: {
CloseTabbar() {
this.showTabbar = false
},
OpenTabbar() {
this.showTabbar = true
}
},
components: {
TabbarComponents
}
}
</script>
<style lang="stylus">
.car .van-checkbox__label
width 100%
</style>