v-deep(样式穿透)或者>>>的使用
<style lang="scss" scoped>
.a{
::v-deep .b {
/* ... */
}
}
</style>
devExtreme中给按钮设置样式
type设置成自定义名字,然后在样式中写自己的样式
<template>
<DxButton ...
type="warning"
/>
</template>
<script>
// ...
</script>
<style>
.dx-button.dx-button-warning {
background-color: #ffc107;
}
</style>
标签:...,样式,前端,deep,dx,button
From: https://www.cnblogs.com/rhy2103/p/17576362.html