1
0
mirror of https://github.com/XTLS/Xray-docs-next.git synced 2025-08-24 04:18:35 +00:00
Xray-docs-next/docs/.vuepress/theme/layouts/Layout.vue
2021-04-06 19:05:35 +08:00

18 lines
296 B
Vue

<template>
<ParentLayout />
</template>
<script lang="ts">
import ParentLayout from "@parent-theme/layouts/Layout.vue";
import Vue from "vue";
export default Vue.extend({
components: {
ParentLayout,
},
});
</script>
<style lang="stylus">
@require '../styles/components.styl'
</style>