mirror of
https://github.com/versia-pub/docs.git
synced 2025-12-06 06:18:19 +01:00
13 lines
239 B
Vue
13 lines
239 B
Vue
<script setup>
|
|
import DefaultTheme from 'vitepress/theme'
|
|
import Banner from '../../components/Banner.vue';
|
|
import "iconify-icon";
|
|
|
|
const { Layout } = DefaultTheme
|
|
</script>
|
|
|
|
<template>
|
|
<Banner />
|
|
<Layout>
|
|
</Layout>
|
|
</template> |