Page.js 771 Bytes
Newer Older
1
import Vue from "vue";
2 3 4 5 6 7
import Anchor from "@theme/components/Anchor.vue";
import Comment from "@Comment";
import MyTransition from "@theme/components/MyTransition.vue";
import PageInfo from "@mr-hope/vuepress-plugin-comment/lib/client/PageInfo.vue";
import PageMeta from "@theme/components/PageMeta.vue";
import PageNav from "@theme/components/PageNav.vue";
8
export default Vue.extend({
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
    name: "Page",
    components: {
        Anchor,
        Comment,
        MyTransition,
        PageInfo,
        PageMeta,
        PageNav,
    },
    props: {
        sidebarItems: {
            type: Array,
            default: () => [],
        },
        headers: {
            type: Array,
            default: () => [],
        },
    },
});
29
//# sourceMappingURL=Page.js.map