vue.js 修改Quasar本身一些组件的样式
当要修改quasar自带组件(比如,input,select)的样式时,可以使用 :deep()
<style lang="scss" scoped> :deep(.q-card__section--vert) { padding: 0 16px; } </style>
参考链接
https://www.saoniuhuo.com/question/detail-2720914.html
当要修改quasar自带组件(比如,input,select)的样式时,可以使用 :deep()
<style lang="scss" scoped> :deep(.q-card__section--vert) { padding: 0 16px; } </style>
参考链接
https://www.saoniuhuo.com/question/detail-2720914.html