feat: 组件参数类型名更改
- QuestionList.vue: Array as PropType<QuestionView[]> => Array as PropType<ProductQuestionView[]>
This commit is contained in:
@ -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: () => [],
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user