UNPKG

winbox-ui-next

Version:

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

18 lines (17 loc) 688 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports[Symbol.toStringTag] = "Module"; var globalConfig = require("../_utils/global-config.js"); var carousel = require("./carousel.js"); var carouselItem = require("./carousel-item.js"); const Carousel = Object.assign(carousel, { Item: carouselItem, install: (app, options) => { globalConfig.setGlobalConfig(app, options); const componentPrefix = globalConfig.getComponentPrefix(options); app.component(componentPrefix + carousel.name, carousel); app.component(componentPrefix + carouselItem.name, carouselItem); } }); exports.CarouselItem = carouselItem; exports["default"] = Carousel;