Skip to content

Commit b330574

Browse files
committed
fix: fix vue compiler error "define props is a compiler macro..."
1 parent c5c0f3b commit b330574

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

custom/SingleMultiInput.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import type {
2424
AdminForthResourceCommon,
2525
AdminUser,
2626
} from "@/types/Common";
27-
import { computed, defineProps, defineEmits, type Ref, watch, nextTick, ref, onMounted } from "vue";
27+
import { computed, type Ref, watch, nextTick, ref, onMounted } from "vue";
2828
2929
const shortValue: Ref<boolean> = computed(() => (props.record[props.column.name]?.length || 0) < 50);
3030

0 commit comments

Comments
 (0)