diff --git a/frontend/components/global/Select.vue b/frontend/components/global/Select.vue index 45f9d9c..459509b 100644 --- a/frontend/components/global/Select.vue +++ b/frontend/components/global/Select.vue @@ -9,6 +9,7 @@ type Props = { options?: string[]; placeholder?: string; triggerRootClass?: string; + loading?: boolean; }; type Emits = { @@ -21,6 +22,7 @@ const props = withDefaults(defineProps(), { variant: "solid", disabled: false, placeholder: "وارد نشده", + loading: false, }); const { modelValue, variant, error, triggerRootClass } = toRefs(props); @@ -53,15 +55,25 @@ const classes = computed(() => {