2021-05-28 00:32:34 +08:00
|
|
|
<template>
|
2022-01-04 13:53:07 +08:00
|
|
|
<app-provider>
|
2022-01-04 02:20:32 +08:00
|
|
|
<router-view />
|
2022-01-04 13:53:07 +08:00
|
|
|
</app-provider>
|
2021-05-28 00:32:34 +08:00
|
|
|
</template>
|
|
|
|
|
2022-01-04 02:20:32 +08:00
|
|
|
<script setup lang="ts">
|
2022-01-16 20:13:11 +08:00
|
|
|
import { subscribeStore } from '@/store';
|
|
|
|
import { useTheme } from '@/composables';
|
2022-01-04 13:53:07 +08:00
|
|
|
import AppProvider from './AppProvider.vue';
|
2022-01-16 20:13:11 +08:00
|
|
|
|
|
|
|
function init() {
|
|
|
|
subscribeStore();
|
|
|
|
useTheme();
|
|
|
|
}
|
|
|
|
|
|
|
|
init();
|
2022-01-04 02:20:32 +08:00
|
|
|
</script>
|
2022-01-03 22:20:10 +08:00
|
|
|
<style scoped></style>
|