uniapp改变组件内样式

2021-11-17  本文已影响0人  塔塔七

uniapp改变组件内样式

<script>
export default {
data() {
  return{}
},
props: {},
components: {},
computed: {},
created() {},
options: { styleIsolation: "shared" }, // 在生命周期添加这句
methods: {},
};
</script>

<style lang="scss" scoped>
    /deep/.uni-countdown__number{  // 组件内样式修改使用/deep/
        border-radius: 8rpx;
    }
</style>

上一篇 下一篇

猜你喜欢

热点阅读