1
suerprisePlus
2024-06-06 7acf7ad6948e3e952173a2551ea4a92a8ff56c35
1
2
3
4
5
6
7
8
9
10
 
// 导入组件,组件必须声明 name
import Chat from './index.vue'
 
// 为组件添加 install 方法,用于按需引入
Chat.install = function (Vue) {
  Vue.component(Chat.name, Chat)
}
 
export default Chat