bjwz-china/src/.vuepress/.temp/md-enhance/config.js

44 lines
3.2 KiB
JavaScript

import { defineClientConfig } from "@vuepress/client";
import ChartJS from "C:/Users/Nofated/Code/bjwz-china/node_modules/vuepress-plugin-md-enhance/lib/client/components/ChartJS.js";
import CodeTabs from "C:/Users/Nofated/Code/bjwz-china/node_modules/vuepress-plugin-md-enhance/lib/client/components/CodeTabs.js";
import "C:/Users/Nofated/Code/bjwz-china/node_modules/vuepress-plugin-md-enhance/lib/client/styles/container/index.scss";
import CodeDemo from "C:/Users/Nofated/Code/bjwz-china/node_modules/vuepress-plugin-md-enhance/lib/client/components/CodeDemo.js";
import ECharts from "C:/Users/Nofated/Code/bjwz-china/node_modules/vuepress-plugin-md-enhance/lib/client/components/ECharts.js";
import "C:/Users/Nofated/Code/bjwz-china/node_modules/vuepress-plugin-md-enhance/lib/client/styles/figure.scss";
import FlowChart from "C:/Users/Nofated/Code/bjwz-china/node_modules/vuepress-plugin-md-enhance/lib/client/components/FlowChart.js";
import "C:/Users/Nofated/Code/bjwz-china/node_modules/vuepress-plugin-md-enhance/lib/client/styles/footnote.scss";
import "C:/Users/Nofated/Code/bjwz-china/node_modules/vuepress-plugin-md-enhance/lib/client/styles/image-mark.scss"
import Mermaid from "C:/Users/Nofated/Code/bjwz-china/node_modules/vuepress-plugin-md-enhance/lib/client/components/Mermaid.js";
import { injectMermaidConfig } from "C:/Users/Nofated/Code/bjwz-china/node_modules/vuepress-plugin-md-enhance/lib/client//index.js";
import "C:/Users/Nofated/Code/bjwz-china/node_modules/reveal.js/dist/reveal.css";
import Presentation from "C:/Users/Nofated/Code/bjwz-china/node_modules/vuepress-plugin-md-enhance/lib/client/components/Presentation.js";
import { injectRevealConfig } from "C:/Users/Nofated/Code/bjwz-china/node_modules/vuepress-plugin-md-enhance/lib/client/index.js";
import Playground from "C:/Users/Nofated/Code/bjwz-china/node_modules/vuepress-plugin-md-enhance/lib/client/components/Playground.js";
import Tabs from "C:/Users/Nofated/Code/bjwz-china/node_modules/vuepress-plugin-md-enhance/lib/client/components/Tabs.js";
import "C:/Users/Nofated/Code/bjwz-china/node_modules/vuepress-plugin-md-enhance/lib/client/styles/tasklist.scss";
import "C:/Users/Nofated/Code/bjwz-china/node_modules/katex/dist/katex.min.css";
import "C:/Users/Nofated/Code/bjwz-china/node_modules/vuepress-plugin-md-enhance/lib/client/styles/katex.scss";
import { defineAsyncComponent } from "vue";
import { injectVuePlaygroundConfig } from "C:/Users/Nofated/Code/bjwz-china/node_modules/vuepress-plugin-md-enhance/lib/client/index.js";
export default defineClientConfig({
enhance: ({ app }) => {
app.component("ChartJS", ChartJS)
app.component("CodeTabs", CodeTabs);
app.component("CodeDemo", CodeDemo);
app.component("ECharts", ECharts);
app.component("FlowChart", FlowChart);
injectMermaidConfig(app);
app.component("Mermaid", Mermaid);
injectRevealConfig(app);
app.component("Presentation", Presentation);
app.component("Playground", Playground);
app.component("Tabs", Tabs);
injectVuePlaygroundConfig(app);
app.component("VuePlayground", defineAsyncComponent(() => import("C:/Users/Nofated/Code/bjwz-china/node_modules/vuepress-plugin-md-enhance/lib/client/components/VuePlayground.js")));
},
setup: () => {
}
});