仪表盘
版本库
文件存储
活动
搜索
登录
史文帅
/
GeoAgent
Ai大模型2.0
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
代码初始化
suerprisePlus
2024-06-05
3ed05b2ea37c4da7b0b4923991deb1d27f415027
[~shiwenshuai/GeoAgent.git]
/
src
/
components
/
Chat
/
index.js
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