feat: 组件参数类型名更改

- QuestionList.vue: Array as PropType<QuestionView[]> => Array as
PropType<ProductQuestionView[]>
This commit is contained in:
2025-10-18 16:26:08 +08:00
parent 46e79f0b5c
commit 94d3f31cbd

View File

@ -16,7 +16,7 @@
<script setup lang="ts"> <script setup lang="ts">
defineProps({ defineProps({
questions: { questions: {
type: Array as PropType<QuestionView[]>, type: Array as PropType<ProductQuestionView[]>,
default: () => [], default: () => [],
}, },
}); });