fix: 修复提示错误

This commit is contained in:
wangdan-fit2cloud 2024-07-24 15:26:17 +08:00
parent d86f0f3828
commit e2867995af

View File

@ -98,7 +98,7 @@ const form = ref<any>({
const rules = reactive<FormRules>({
content: [
{ required: true, message: '请输入分段内容', trigger: 'blur' },
{ max: 100000, message: '内容最多不超过 4096 个字', trigger: 'blur' }
{ max: 100000, message: '内容最多不超过 100000 个字', trigger: 'blur' }
]
})