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