把学习当作习惯

导航

前端

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>

posted on 2023-07-24 08:52  生活的样子就该是那样  阅读(5)  评论(0编辑  收藏  举报