You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
756 B
Vue
31 lines
756 B
Vue
<script setup lang="ts">
|
|
import DefaultTheme from 'vitepress/theme-without-fonts'
|
|
|
|
import Home from './Home.vue'
|
|
import TranslatorWidget from './TranslatorWidget.vue'
|
|
import ScreenTranslatorWidget from './ScreenTranslatorWidget.vue'
|
|
import Breadcrumbs from './Breadcrumbs.vue'
|
|
import NotFound from './NotFound.vue'
|
|
|
|
const { Layout } = DefaultTheme
|
|
</script>
|
|
|
|
<template>
|
|
<Layout>
|
|
<template #home-hero-before>
|
|
<Home />
|
|
</template>
|
|
<template #aside-outline-after>
|
|
<TranslatorWidget />
|
|
</template>
|
|
<template #doc-before>
|
|
<Breadcrumbs />
|
|
</template>
|
|
<template #doc-footer-before>
|
|
<ScreenTranslatorWidget />
|
|
</template>
|
|
<template #not-found>
|
|
<NotFound />
|
|
</template>
|
|
</Layout>
|
|
</template> |