vue3-solid
Version:
vue3 library for Solid Project
41 lines (30 loc) • 896 B
JavaScript
import { openBlock, createElementBlock } from 'vue';
var script$1 = {
name: 'InputText'
};
const _hoisted_1 = { type: "text" };
function render$1(_ctx, _cache, $props, $setup, $data, $options) {
return (openBlock(), createElementBlock("input", _hoisted_1))
}
script$1.render = render$1;
script$1.__file = "src/InputText.vue";
var script = {
name: 'InputTextarea'
};
function render(_ctx, _cache, $props, $setup, $data, $options) {
return (openBlock(), createElementBlock("textarea"))
}
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 };