28 lines
559 B
Vue
28 lines
559 B
Vue
<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> |