公告板
版本库
filestore
活动
搜索
登录
smartai-v2
/
vue-smart-ai
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
问搜万物-卡片布局优化;模型优化数据添加按钮调整触发方式;历史会话样式调整。
sd
2025-08-11
15a15ded10ce55b327d8930b5145df0f4cf2e4f8
[smartai-v2/vue-smart-ai.git]
/
src
/
pages
/
ai
/
FileUpload
/
common
/
mixins.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export const uploaderMixin = {
inject: ['uploader']
}
export const supportMixin = {
data () {
return {
support: true
}
},
mounted () {
this.support = this.uploader.uploader.support
}
}