mirror of
https://github.com/XTLS/Xray-docs-next.git
synced 2025-01-20 01:31:40 +03:00
9 lines
277 B
TypeScript
9 lines
277 B
TypeScript
|
import { defineClientAppEnhance } from "@vuepress/client";
|
||
|
import Tab from "./components/Tab.vue";
|
||
|
import Tabs from "./components/Tabs.vue";
|
||
|
|
||
|
export default defineClientAppEnhance(({ app, router, siteData }) => {
|
||
|
app.component("Tab", Tab);
|
||
|
app.component("Tabs", Tabs);
|
||
|
});
|