Explorar o código

cl-svg 参数 color 支持 "none"

icssoa hai 7 meses
pai
achega
1e8d712b89
Modificáronse 1 ficheiros con 4 adicións e 0 borrados
  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");