浏览代码

cl-svg 参数 color 支持 "none"

icssoa 7 月之前
父节点
当前提交
1e8d712b89
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      uni_modules/cool-svg/components/cl-svg/cl-svg.uvue

+ 4 - 0
uni_modules/cool-svg/components/cl-svg/cl-svg.uvue

@@ -52,6 +52,10 @@ const props = defineProps({
 
 // 颜色值
 const color = computed(() => {
+	if (props.color == "none") {
+		return "";
+	}
+
 	if (props.color != "") {
 		if (props.color == "primary") {
 			return getColor("primary-500");