【发布时间】:2019-07-24 20:29:17
【问题描述】:
我有一个带有 Vuetify 和 pug 的 Vuejs 组件。
.moreQuestion__wrapper
v-expansion-panel.moreQuestion__wrapper-panel
v-expansion-panel-content(v-for="(question, i) in
questions" :key="i" expand-icon="arrow_drop_down")
<template v-slot:header>
.moreQuestion__wrapper-slot {{ question }}
</template>
v-card
v-card-text.moreQuestion__wrapper-text {{ content }}
主要问题是什么 - 我必须为 v-expansion-panel__header 覆盖 padding-right。
主要问题是什么 - 我必须为 v-expansion-panel__header 覆盖 padding-right。 我曾尝试添加不同的类,但没有效果。 我知道 slot 不是真正的 DOM 组件,但是如何更改 v-expansion-panel__header 的样式?
【问题讨论】:
标签: vue.js vuetify.js scss-mixins