UNPKG

birdpaper-ui

Version:

一个通用的 vue3 UI组件库。A common vue3 UI component library.

17 lines (16 loc) 550 B
"use strict"; Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } }); const config = require("../utils/config.js"); const grid = require("./src/grid.vue.js"); const col = require("./src/col.vue.js"); grid.name = config.getComponentsPrefix() + grid.name; col.name = config.getComponentsPrefix() + col.name; const Grid = Object.assign(grid, { Col: col, install: (app) => { app.component(grid.name, grid); app.component(col.name, col); } }); exports.Col = col; exports.default = Grid;