feat: 组件参数类型名更改
- QuestionList.vue: Array as PropType<QuestionView[]> => Array as PropType<ProductQuestionView[]>
This commit is contained in:
@ -16,7 +16,7 @@
|
||||
<script setup lang="ts">
|
||||
defineProps({
|
||||
questions: {
|
||||
type: Array as PropType<QuestionView[]>,
|
||||
type: Array as PropType<ProductQuestionView[]>,
|
||||
default: () => [],
|
||||
},
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user