nuxt-modules / svg-sprite

Optimize SVG files and combine them into sprite
https://codesandbox.io/s/github/nuxt-community/svg-sprite-module/
MIT License
295 stars 41 forks source link

feat: `enum` of the sprite and its contents #297

Open TakNePoidet opened 10 months ago

TakNePoidet commented 10 months ago

Example:

<template>
  <div>
    <svg-icon :name="Love.Love" title="Bee Mine" width="150px" height="150px" />
    <svg-icon :name="Love.HugsAndKisses" title="Hugs And Kisses" width="150px" height="150px" />
    <svg-icon :name="Love.Love" title="Love" width="150px" height="150px" />
  </div>
</template>

<script setup lang="ts">
import { Love } from '#sprite'
</script>