How can I import a svg file to a Vue component? How can I import a svg file to a Vue component? vue.js vue.js

How can I import a svg file to a Vue component?


Based on the information you provided, what you can do is:

  1. Install vue-svg-loader

npm install --save-dev vue-svg-loader

  1. Configure webpack:

module: {    rules: [      {       test: /\.svg$/,       loader: 'vue-svg-loader', // `vue-svg` for webpack 1.x      },    ],  },