学习路径和项目的开课编辑

This commit is contained in:
nisen
2023-08-15 10:01:26 +08:00
parent fb303d7c46
commit cf931d4112
4 changed files with 27 additions and 5 deletions

View File

@@ -4,6 +4,7 @@
:placeholder="placeholder"
:show-count="showCount"
:maxlength="maxlength"
:disabled="disabled"
/>
<div style="color: red; font-size: 10px" v-if="modelV.value && validated===0 && isExistName">
名称重复请重新输入
@@ -43,6 +44,10 @@ const props = defineProps({
onceName: {
type: String,
},
disabled:{
type:Boolean,
default:false
}
});
const emit = defineEmits(["update:value",'update:validated']);