UNPKG

@snippetors/vuepress-plugin-tabs

Version:

Vuepress plugin - markdown custom container to display content in tabs

14 lines (10 loc) 311 B
import Tabs from "./components/Tabs.vue"; import TabPane from "./components/Tab-pane.vue"; import { defineClientConfig } from "@vuepress/client"; import "./theme/tabs.scss"; export default defineClientConfig({ enhance({ app }) { app.component("Tabs", Tabs); app.component("Tab", TabPane); }, });