UNPKG

vue3-solid

Version:
43 lines (31 loc) 895 B
'use strict'; var vue = require('vue'); var script$1 = { name: 'InputText' }; const _hoisted_1 = { type: "text" }; function render$1(_ctx, _cache, $props, $setup, $data, $options) { return (vue.openBlock(), vue.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 (vue.openBlock(), vue.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); } } } }; module.exports = plugin;