如何解决element svg图标在火狐浏览器显示异常?

我写了一个很简单的 vue icon 组件,二次封装了 element-plus 图标。

<script>
import * as Icons from '@element-plus/icons-vue'

export default (props) => {
  const { name } = props
  if (name) {
    const style = {}
    style.width = props.size
    style.height = props.size
    props.width ? style.width = props.width : ''
    props.height ? style.height = props.height : ''
    props.color ? style.color = props.color : ''
    return h(Icons[name], { style })
  }
}
</script>

使用:

<icon name="IceCream" :size="30"></icon>

这个组件在火狐浏览器里显示异常,在dom里看svg图标并没有赋值到宽高样式,svg图标显示得很大,但其他浏览器不会出现此问题,显示均正常,请问如何解决此问题?
火狐浏览器:
image.png
其他浏览器:
image.png

阅读 2.2k
1 个回答
<script>
import * as Icons from '@element-plus/icons-vue'

export default (props) => {
  const { name } = props
  if (name) {
    const style = {}
    const attrs = {}
    props.size ? attrs.width = props.size : ''
    props.size ? attrs.height = props.size : ''
    props.width ? attrs.width = props.width : ''
    props.height ? attrs.height = props.height : ''
    props.color ? style.color = props.color : ''
    return h(Icons[name], { style, attrs })
  }
}
</script>
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题