소품 항목으로 배열을 전달했고 인터페이스 Props에 유형을 지정했는데 기본값을 지정하려고 하면 오류 라인 4가 표시됩니다. TS2322:类型'never[]'不可分配给类型'(道具:只读<Props>)= >字符串[]'。类型“never[]”不提供与签名“(props: Readonly<Props>): string[]”的匹配项。
여기서 제가 뭘 잘못하고 있는지 잘 모르겠습니다. , 이는 다른 변수에도 작동하는 것 같습니다
<script setup lang="ts"> import {ref} from "vue"; interface Props { items?: Array<string> } const props = withDefaults(defineProps<Props>(), { items: [] }); let selectedItem = ref(props.items[0])