mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
10 lines
230 B
JavaScript
10 lines
230 B
JavaScript
|
/* istanbul ignore file */
|
||
|
import CustomInput from './src/main.vue'
|
||
|
|
||
|
CustomInput.install = function (Vue) {
|
||
|
Vue.component(CustomInput.name, CustomInput)
|
||
|
Vue.component('NCustomInput', CustomInput)
|
||
|
}
|
||
|
|
||
|
export default CustomInput
|