This commit is contained in:
dute7liang
2023-12-19 22:23:45 +08:00
commit 97daeafbe7
117 changed files with 19926 additions and 0 deletions

28
src/App.vue Normal file
View File

@@ -0,0 +1,28 @@
<template>
<!-- <router-view v-slot="{ Component }">-->
<!-- <transition name="fade-transition" mode="out-in">-->
<!-- <keep-alive>-->
<!-- <component :is="Component"></component>-->
<!-- </keep-alive>-->
<!-- </transition>-->
<!-- </router-view>-->
<!-- v-if="showBar"-->
<div>
<!-- <van-sticky>-->
<!-- </van-sticky>-->
<router-view />
</div>
</template>
<script setup lang="ts">
</script>
<style>
@import "style/index.scss";
body {
//background-color: #f8f8f8;
-webkit-font-smoothing: antialiased;
}
</style>