UNPKG

winbox-ui-next

Version:

We Design Vue 2.0: A Vue.js 3 UI Library

18 lines (17 loc) 628 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports[Symbol.toStringTag] = "Module"; var globalConfig = require("../_utils/global-config.js"); var tabs = require("./tabs.js"); var tabPane = require("./tab-pane.js"); const Tabs = Object.assign(tabs, { TabPane: tabPane, install: (app, options) => { globalConfig.setGlobalConfig(app, options); const componentPrefix = globalConfig.getComponentPrefix(options); app.component(componentPrefix + tabs.name, tabs); app.component(componentPrefix + tabPane.name, tabPane); } }); exports.TabPane = tabPane; exports["default"] = Tabs;