You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
482 B
30 lines
482 B
<template>
|
|
<Suspense>
|
|
<template #default>
|
|
<router-view />
|
|
</template>
|
|
<template #fallback>
|
|
Loading
|
|
</template>
|
|
</Suspense>
|
|
</template>
|
|
|
|
<script setup>
|
|
// import { getSiteConfig } from './api'
|
|
|
|
// import { useStore } from 'vuex'
|
|
|
|
// const store = useStore()
|
|
// import { useUserStore } from '@/store/user'
|
|
|
|
// const userStore = useUserStore();
|
|
|
|
// userStore.getUserData();
|
|
|
|
</script>
|
|
<style lang="less">
|
|
#app {
|
|
// margin-bottom: 40px;
|
|
}
|
|
</style>
|
|
|