birdpaper-ui
Version:
一个通用的 vue3 UI组件库。A common vue3 UI component library.
11 lines (10 loc) • 317 B
JavaScript
;
const textarea = require("./src/textarea.vue.js");
const config = require("../utils/config.js");
textarea.name = config.getComponentsPrefix() + textarea.name;
const Textarea = Object.assign(textarea, {
install: (app) => {
app.component(textarea.name, textarea);
}
});
module.exports = Textarea;