0.1.1 • Published 6 months ago

unplugin-svg-vue-component v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

unplugin-svg-vue-component

GitHub package.json version

Use SVG as vue components with support for both vue2.7 and vue3.x.

npm i -D unplugin-svg-vue-component

Usage

Vite

import svgPlugin from 'unplugin-svg-vue-component/vite'
import vue from '@vitejs/plugin-vue'
import { defineConfig } from 'vite'

export default defineConfig({
  plugins: [
    vue(),
    svgPlugin(),
  ],
})
<script setup lang="ts">
import MsgIcon from './msg.svg'

// OR
// import MsgIcon from './msg.svg?component'
</script>

<template>
  <MsgIcon />
</template>

Options

  • optimize: Disabled by default. Based on svgo
// https://github.com/svg/svgo
export default defineConfig({
  plugins: [
    vue2(),
    svgPlugin({ optimize: true }),
  ],
})

Used in TypeScript

First tsconfig configuration

{
  "compilerOptions": {
    "types": ["unplugin-svg-vue-component/client"]
  }
}

Then import the SVG using the following form to avoid ts errors

import MsgIcon from './msg.svg?component'

Acknowledgement

Integration of the following schemes

License

MIT

0.1.1-beta.0

6 months ago

0.1.1

6 months ago

0.1.0

1 year ago

0.1.0-beta.1

1 year ago

0.1.0-beta.0

1 year ago

0.0.5

1 year ago

0.0.5-beta.2

1 year ago

0.0.5-beta.1

1 year ago

0.0.5-beta.0

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.3-beta.3

1 year ago

0.0.3-beta.2

1 year ago

0.0.3-beta.1

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago