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>