mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2026-02-13 03:45:31 +00:00
Correction du type dans la définition du modèle pour le champ de valeur dans CommentEditor.vue
This commit is contained in:
@@ -39,7 +39,7 @@ enum EditorKind {
|
||||
|
||||
const EDITOR_MODE_KEY = "editorMode";
|
||||
const kind = ref<EditorKind>(EditorKind.SIMPLE);
|
||||
const value = defineModel<string>({ required: true });
|
||||
const value = defineModel({ required: true, type: String });
|
||||
|
||||
const isSimple = computed(() => kind.value === EditorKind.SIMPLE);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user