MMF-FE / svgicon

SVG icon components and tool set
https://mmf-fe.github.io/svgicon
MIT License
922 stars 95 forks source link

Add a title property to show tooltip #58

Closed Ludonope closed 6 years ago

Ludonope commented 6 years ago

To add a tooltip on a div you need to add a title attribute on it. With svg it is a little different, you need to add a title tag into the svg one.

Doesn't work:

<svg title="Some tooltip">
    <path>...</path>
</svg>

Work:

<svg>
    <title>Some tooltip</title>
    <path>...</path>
</svg>

It would be a nice feature if putting a title attribute on the svgicon would generage a title tag in the final svg one.

Ludonope commented 6 years ago

I opened the pull request https://github.com/MMF-FE/vue-svgicon/pull/59 solving my issue, hope it will be merged soon.