/vue-svg-icon-loader

Turn SVG files into VueJS Components

Primary LanguageTypeScriptMIT LicenseMIT

Vue SVG Icon Loader for webpack

This is a webpack loader that turns SVG icons into directly-importable vuejs components. You can import these and use them directly in your Vue applications:

<template>
  <div>
    <my-icon width='1.5em' height='1.5em'/>
  </div>
</template>

<script>
import MyIcon from './my-icon.svg'

export default {
  components: {
    MyIcon
  },
}
</script>

SVG attributes can be overridden with CSS or inline on the icon element in your template. See the example project for more usage examples.

Caveats

This is currently a simple loader that has only been designed to work in tandem with the svg-sprite-loader project. It should be fairly straighforward to make this work with other SVG loader patterns, but it will probably not do that out of the box. I'm glad to work with anyone to improve the number of use cases this works for!

Getting Started

Examples

There is a sample Vue + Webpack project in the examples/ directory that shows how to use this in an application.

Installation

yarn add vue-svg-icon-loader

or

npm install vue-svg-icon-loader

Configuration

Create or update webpack.config.js like so:

  module.exports = {
    entry: './app.js',
    output: {
      filename: 'bundle.js'
    },
    module: {
      rules: [
        // ... other configured loaders
        {
          test: /\.svg$/,
          use: [
            'vue-svg-icon-loader',
            'svg-sprite-loader'
          ],
        }
      ]
    }
  }

Options

You an also provide options to the loader:

{
  test: /\.svg$/,
  use: [
    {
      loader: 'vue-svg-icon-loader',
      options: {
        defaultScale: number | undefined
      }
    }
    'svg-sprite-loader'
  ]
}
defaultScale

default = 1

Setting this to an integer will multiply the SVG viewBox dimensions by this number in each component. This can be overridden per component instnace by passing a scale prop.

Typescript

Importing svg files as Vue components in typescript requires one additional setup step. You will need to provide a type definition for .svg files so that typescript knows to treat them as a vue component. If you haven't done this, you'll see typescript reporting "module not found" errors. Create a svg.d.ts file wherever you store external type defintions, and add the following content:

declare module "*.svg" {
  import Vue from 'vue'
  export default Vue
}

Note: If anyone knows a way for this loader to provide this for projects automatically, please open an issue and let me know!

Contributing

I want you to help make this even better. Please feel free to contribute; if you have any problems or feature suggestions, please open an issue on Github.

License

MIT License