mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +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
|