是否可以覆盖vuetify/packages/vuetify/src/stylus/components/_text-fields.styl
中的变量?
例如,我要替换:
$material-light:={
...
input-bottom-line: rgba($shades.black, .42)
...
}
具有:
input-bottom-line: primary-lighten-1`
其中primary-lighten-1
是Vue.use(Vuetify, {theme...})
中定义的颜色。
我认为这不同于修改笔针变量(请参见https://vuetifyjs.com/en/framework/theme)。