【发布时间】:2020-06-28 07:48:17
【问题描述】:
我正在使用 Vue 和 Axios 使用 Vuetify 的 Stepper 组件来显示数据。所以在添加 API 数据后,CSS 类设置为display: none;。我不知道为什么,请帮助我。
这是我显示数据的代码。如果你想要什么,请告诉我
<v-stepper v-model="questionTab">
<v-stepper-items>
<text-component
v-for="item in question_data" :key="item.questionTab"
:stepData="1"
:questionid="item.questions.question_title"
:questiondescription="item.questions.question_desc"
></text-component>
</v-stepper-items>
</v-stepper>
【问题讨论】:
-
能否请您展示您的文本组件?
标签: vue.js vuetify.js