问题描述
使用自定义SVG图标时希望设置图标的宽高等属性,在 Ant Design Vue 的文档中找到如下描述:
Icon
中的component
组件的接受的属性如下
注意这里是 component
的属性,而不是 Icon
的属性,所以加到 Icon
标签上并不起作用,后面会有测试结果。
我对 Vue.js
还处于刚入门的水平,不知道这里是不是有一种语法可以给这个 component
设置参数,所以只能按自己的想法胡乱做了一些尝试,果然都不起作用。还望各位大佬不吝赐教。
相关代码
<template>
<a-icon :component="logo" class="logo" />
</template>
<script>
import Vue from "vue";
import { Icon } from "ant-design-vue";
import LogoSvg from "@/assets/logo.svg";
Vue.use(Icon);
Vue.component("logo-svg", LogoSvg);
export default {
name: "MainFrame",
data() {
return {
logo: "logo-svg"
};
}
};
</script>
输出结果:
<i data-v-65cc6c6a="" class="logo anticon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="1em" height="1em" fill="currentColor" aria-hidden="true" focusable="false" class="">...</svg>
</i>
你期待的结果
<i data-v-65cc6c6a="" class="logo anticon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="56" height="56" fill="currentColor" aria-hidden="true" focusable="false">...</svg>
</i>
自己尝试过哪些方法
方法一 将属性加到 Icon
标签上
<a-icon :component="logo" class="logo" :width="56" :height="56" />
输出结果:
<i data-v-65cc6c6a="" class="logo anticon" width="56" height="56">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="1em" height="1em" fill="currentColor" aria-hidden="true" focusable="false" class="">...</svg>
</i>
属性添加到了Icon标签上,并未出现在svg标签上。
方法二 直接使用 SVG
,不使用 Icon
<logo-svg class="logo" :width="56" :height="56" />
输出结果:
<svg data-v-65cc6c6a="" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="56" height="56" class="logo">...</svg>
原有属性被覆盖,表明属性本身是有效的。
方法三 重新定义一个组件对 svg
做一次封装
Vue.component("my-logo", {
render: h =>
h("logo-svg", {
attrs: {
width: 56,
height: 56,
foo: "bar"
}
})
});
export default {
name: "MainFrame",
data() {
return {
logo: "my-logo"
};
}
};
输出结果:
<i data-v-65cc6c6a="" class="logo anticon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="1em" height="1em" foo="bar" class="" fill="currentColor" aria-hidden="true" focusable="false">...</svg>
</i>
新增的属性 foo: "bar"
出现在了 svg
标签中,但 width
和 height
未能覆盖原有值。
应该是需要透传。也就是外侧组件先要接收width和height在传给内部组件: