Files
fad-dashboard/frontend/packages/RemoteComponents/settingConfig.js
2025-11-08 10:38:36 +08:00

22 lines
519 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { commonConfig, displayOption } from 'data-room-ui/js/config'
export const settingConfig = {
displayOption: { ...displayOption }
}
const customConfig = {
root: {
version: '2023071001',
contribution: false
},
customize: {
// 文件路径
vueSysComponentDirName: null,
// 用户上传的vue文件编码根据此编码获取文件内容
vueBizComponentCode: null,
// vue文本内容
vueFileContent: null
}
}
export const dataConfig = {
...commonConfig(customConfig)
}