2024-09-13 12:19:12 +08:00
|
|
|
import useRouterStore from '@/useRouterStore'
|
|
|
|
import { defineComponent, Transition } from 'vue'
|
|
|
|
import UserPage from '@/user/UserPage'
|
|
|
|
import BackgroundPage from '@/layout/background/BackgroundPage'
|
|
|
|
import ThemeProvider from '@/utils/ThemeProvider'
|
2024-10-10 16:04:00 +08:00
|
|
|
import BlockSettings from '@/layout/grid/BlockSettings'
|
2024-09-13 12:19:12 +08:00
|
|
|
export default defineComponent(() => {
|
|
|
|
const router = useRouterStore()
|
|
|
|
return () => (
|
|
|
|
<div class="w-0 h-full flex-grow bg-white/80 backdrop-blur">
|
|
|
|
<ThemeProvider>
|
|
|
|
<Transition>
|
|
|
|
{router.path === 'settings-user' ? (
|
|
|
|
<UserPage />
|
|
|
|
) : router.path === 'settings-background' ? (
|
|
|
|
<BackgroundPage />
|
2024-10-10 16:04:00 +08:00
|
|
|
) : router.path === 'settings-block' ? (
|
|
|
|
<BlockSettings />
|
2024-09-13 12:19:12 +08:00
|
|
|
) : null}
|
|
|
|
</Transition>
|
|
|
|
</ThemeProvider>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
})
|