vue-svg-icon-loader icon indicating copy to clipboard operation
vue-svg-icon-loader copied to clipboard

Turn SVG files into VueJS Components

Results 3 vue-svg-icon-loader issues
Sort by recently updated
recently updated
newest added

// vue.config.js ``` chainWebpack: config => { const svgRule = config.module.rule('svg') svgRule.uses.clear() svgRule .oneOf('inline') .resourceQuery(/inline/) .use('vue-svg-icon-loader') .loader('vue-svg-icon-loader') .end() .end() .oneOf('external') .use('file-loader') .loader('file-loader') .options({ name: 'assets/[name].[hash:8].[ext]', }) } ``` // pages...

It seems that this plugin is stripping away style tags from the SVG. Consider the following example: ```xml .st0{fill:#FF007D;} ``` it turns into the following after its loaded: ```xml ```...

It would be great to be able to use fractions as values of the scale prop, like this: ``` ``` At the moment passing such value prevent the icon from...