- <script setup lang="ts">
- const title = import.meta.env.SIX_APP_TITLE;
- const theme = ref<'light' | 'dark'>('dark');
- </script>
- <template>
- <van-config-provider :theme>
- <router-view class="page-container" v-slot="{ Component }">
- <component :is="Component" />
- </router-view>
- </van-config-provider>
- </template>
- <style scoped lang="scss"></style>
|