20 lines
957 B
JavaScript
20 lines
957 B
JavaScript
import { defineClientConfig } from 'vuepress/client'
|
|
import Tabs from '/private/var/www/wwwroot/fuc-new.loc/doc/node_modules/vuepress-plugin-md-power/lib/client/components/Tabs.vue'
|
|
import CodeTabs from '/private/var/www/wwwroot/fuc-new.loc/doc/node_modules/vuepress-plugin-md-power/lib/client/components/CodeTabs.vue'
|
|
import Plot from '/private/var/www/wwwroot/fuc-new.loc/doc/node_modules/vuepress-plugin-md-power/lib/client/components/Plot.vue'
|
|
import FileTreeNode from '/private/var/www/wwwroot/fuc-new.loc/doc/node_modules/vuepress-plugin-md-power/lib/client/components/FileTreeNode.vue'
|
|
|
|
import '/private/var/www/wwwroot/fuc-new.loc/doc/node_modules/vuepress-plugin-md-power/lib/client/styles/index.css'
|
|
|
|
export default defineClientConfig({
|
|
enhance({ router, app }) {
|
|
app.component('Tabs', Tabs)
|
|
app.component('CodeTabs', CodeTabs)
|
|
app.component('Plot', Plot)
|
|
app.component('FileTreeNode', FileTreeNode)
|
|
},
|
|
setup() {
|
|
|
|
}
|
|
})
|