diff --git a/frontend/components/global/ComboBox.vue b/frontend/components/global/ComboBox.vue index 0fbcd4f..b49fe5e 100644 --- a/frontend/components/global/ComboBox.vue +++ b/frontend/components/global/ComboBox.vue @@ -9,11 +9,14 @@ type Option = { type Props = { options: Option[]; modelValue: string[]; + placeholder?: string; }; // props -const props = defineProps(); +const props = withDefaults(defineProps(), { + placeholder: "جست و جو", +}); const { modelValue } = toRefs(props); @@ -48,11 +51,11 @@ watch(