@4tw/vue-cli-plugin-svg-icon 中文文档教程

发布于 3年前 浏览 16 项目主页 更新于 3年前

vue-cli-plugin-svg-icon

添加 webpack 规则以生成优化的 svg 精灵。

Setup

yarn add --dev @4tw/vue-cli-plugin-svg-icon

Usage

vue.config.js 配置中的 pluginOptions 下提供一个 svgDir 选项。

module.exports = {
  pluginOptions: {
    svgDir: path.resolve(__dirname, 'src/assets/svg'),
  },
}

Usage

svgDir 下的所有 svg 文件都是进程并作为导入提供。 导入的别名在 svg 下。

import Icon from 'svg/your_icon.svg'

导入的模块提供来自 svg-sprite-loader 的符号

vue-cli-plugin-svg-icon

Adds webpack rules to generate optimized svg sprites.

Setup

yarn add --dev @4tw/vue-cli-plugin-svg-icon

Usage

Provide a svgDir option under pluginOptions in your vue.config.js config.

module.exports = {
  pluginOptions: {
    svgDir: path.resolve(__dirname, 'src/assets/svg'),
  },
}

Usage

All svg files under the svgDir are processes and provided as an import. The imports are aliased under svg.

import Icon from 'svg/your_icon.svg'

The imported module provides a symbol from the svg-sprite-loader

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文