-
Notifications
You must be signed in to change notification settings - Fork 3
/
library.mjs
42 lines (31 loc) · 947 Bytes
/
library.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import { openBlock, createElementBlock } from 'vue';
var script$1 = {
name: 'InputText'
};
const _hoisted_1$1 = { type: "text" };
function render$1(_ctx, _cache, $props, $setup, $data, $options) {
return (openBlock(), createElementBlock("input", _hoisted_1$1))
}
script$1.render = render$1;
script$1.__file = "src/InputText.vue";
var script = {
name: 'InputTextarea'
};
const _hoisted_1 = { type: "text" };
function render(_ctx, _cache, $props, $setup, $data, $options) {
return (openBlock(), createElementBlock("input", _hoisted_1))
}
script.render = render;
script.__file = "src/InputTextarea.vue";
var components = { InputTextarea: script, InputText: script$1 };
const plugin = {
install (Vue) {
for (const prop in components) {
if (components.hasOwnProperty(prop)) {
const component = components[prop];
Vue.component(component.name, component);
}
}
}
};
export { plugin as default };