在vue 项目中使用到 mint-ui的 组件 《mt-swipe》修改默认样式没用,删除<style scoped></style> 中 scoped ,scoped 是vue 单页面样式防止页面污染的,显然这样做不是明智之举, 后来采用 添加 /deep/ ,例如 :
/deep/.mint-swipe-indicators{
/deep/.mint-swipe-indicator{
width: 20px ;
height: 20px ;
border-radius: 50% ;
}
}
}
网上说添加 >>> 这个符号也是可以的,但是我试了一下,会报错!可能是我的问题 !