wang-hao-jie
2021-11-01 c73d38d71545cea55f5ce0f5a95cb2b3e199a6e6
1
2
3
4
5
6
7
8
9
10
import XIcon from './x-icon.vue'
// 这里是重点
const xicon = {
    install: function (Vue) {
        Vue.component('XIcon', XIcon)
    }
}
 
// 导出组件
export default xicon;