diff --git a/src/components/Iconify/index.vue b/src/components/Iconify/index.vue index 7439c8a..4570001 100644 --- a/src/components/Iconify/index.vue +++ b/src/components/Iconify/index.vue @@ -7,23 +7,21 @@ type: String, }, size: { - type: Number, + type: [Number, String], }, color: { type: String, }, }); - const iconName = computed(() => { - return `i-${props.icon}`; - }); - const iconSize = ref( props.size ? `${props.size}rpx` : false, ); const style = computed(() => { return assign( - unref(iconSize) ? { size: props.size } : {}, + unref(iconSize) + ? { width: unref(iconSize), height: unref(iconSize) } + : {}, props.color ? { color: props.color } : {}, ); }); diff --git a/src/pages/index/index.vue b/src/pages/index/index.vue index f68c685..289fef8 100644 --- a/src/pages/index/index.vue +++ b/src/pages/index/index.vue @@ -29,13 +29,15 @@ 是否是Vue3: {{ isVue3 }} - 当前平台: {{ platform }} + 当前平台: {{ platform }} Get Started → uno css - - - + + + + +