mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
11 lines
258 B
JavaScript
11 lines
258 B
JavaScript
import VxeInput from './src/input'
|
|
import VxeTextarea from './src/textarea'
|
|
|
|
VxeInput.install = function (Vue) {
|
|
Vue.component(VxeInput.name, VxeInput)
|
|
Vue.component(VxeTextarea.name, VxeTextarea)
|
|
}
|
|
|
|
export const Input = VxeInput
|
|
export default VxeInput
|