vue项目引入svg组件全过程

文件格式

svg下方对应 .svg

index.vue svg-icon 组件

js 复制代码
<template>
  <svg
    :viewBox="viewBox"
    xmlns="http://www.w3.org/2000/svg"
    xmlns:xlink="http://www.w3.org/1999/xlink"
    ref="svg"
    class="svg-icon"
    :class="className"
    v-on="$listeners"
    :style="{ width: width + 'em', height: height + 'em' }"
    v-html="iconContent"
  ></svg>
</template>

<script>
export default {
  name: 'SvgIcon',
  props: {
    iconClass: {
      type: String,
      required: true
    },
    className: {
      type: String,
      default: ''
    },
    width: {
      type: Number,
      default: 1
    },
    height: {
      type: Number,
      default: 1
    }
  },
  data() {
    return {
      iconContent: null,
      viewBox: '0 0 24 24',
      test: ''
    }
  },
  watch: {
    iconClass() {
      this.loadIcon()
    }
  },
  created() {
    this.loadIcon()
  },
  methods: {
    loadIcon() {
      const fileName = `${this.iconClass}.svg`
      import(`@/icons/svg/${fileName}`).then((content) => {
        // symbol转换成svg
        const regexSymbol = /<symbol(\s[\s\S]*?)?>([\s\S]*?)<\/symbol>/g
        const svg = content.default.content.replace(regexSymbol, '<svg$1>$2</svg>')
        this.test = content
        // 获取svg内标签
        const regexSvg = /<svg([\s\S]*?)?>([\s\S]*?)<\/svg>/g
        const match = regexSvg.exec(svg)
        this.iconContent = match[2]

        // 匹配svg属性
        const regexAttr = /<svg([\s\S]*?)?>/
        const matchAttr = regexAttr.exec(svg)[1].trim()
        const viewBoxReg = /viewBox="([^"]+)"/
        const viewBoxValue = viewBoxReg.exec(matchAttr)[1]
        this.viewBox = viewBoxValue
      }).catch((err)=>{
        console.log(err)
      })
    }
  }
}
</script>

<style scoped>
.svg-icon {
  /* width: 2em;
  height: 2em; */
  vertical-align: -0.15em;
  fill: currentColor !important;
  overflow: hidden;
}
</style>

index.js 注册组件

js 复制代码
import Vue from 'vue'
// import SvgIcon from '@/components/SvgIcon' // svg组件
import SvgIcon from './index.vue' // svg组件

// register globally
Vue.component('SvgIcon', SvgIcon)

// const requireAll = (requireContext) => requireContext.keys().map(requireContext)
// const req = require.context('./svg', false, /\.svg$/)
// export default requireAll(req)

主要是这段

js 复制代码
 config.module.rule("svg").exclude.add(resolve("src/icons")).end();
    config.module
      .rule("icons")
      .test(/\.svg$/)
      .include.add(resolve("src/icons"))
      .end()
      .use("svg-sprite-loader")
      .loader("svg-sprite-loader")
      .options({
        symbolId: "icon-[name]",
      })
      .end();

安装npm i svg-sprite-loader

js 复制代码
"svg-sprite-loader": "^6.0.11",

补充 可以不看

  • vue.config.js 主要使用带svg的那一段 这是webapck5 的配置

    const { defineConfig } = require("@vue/cli-service");
    const speedMeasureWebpackPlugin = require("speed-measure-webpack-plugin"); // 编译速度分析
    const smp = new speedMeasureWebpackPlugin();
    const path = require("path");
    const isProd = process.env.NODE_ENV === "production";
    let plugins = [];

    module.exports = defineConfig({
    productionSourceMap: false,
    transpileDependencies: true,
    lintOnSave: false,
    devServer: {
    port: 8080,
    open: true,
    hot: true,
    allowedHosts: 'all',
    compress: true, // 是否启动压缩Gzip
    client: {
    overlay: {
    errors: true,
    warnings: false,
    runtimeErrors: false
    }
    },

    复制代码
      }
    },
    configureWebpack: smp.wrap({
      devtool: isProd ? false : "eval", // source-map eval-cheap-module-source-map
      cache: {
        type: "filesystem",
        allowCollectingMemory: true,
        buildDependencies: {
          config: [__filename],
        },
      },
      plugins: plugins,
      optimization: {
        minimize: isProd,
        splitChunks: {
          chunks: "all",
          cacheGroups: {
            common: {
              name: "chunk-common",
              chunks: "initial",
              minChunks: 2,
              maxInitialRequests: 5,
              minSize: 0,
              priority: 1,
              reuseExistingChunk: true,
              enforce: true,
            },
            vendors: {
              name: "chunk-vendors",
              test: /[\\/]node_modules[\\/]/,
              chunks: "initial",
              priority: 2,
              reuseExistingChunk: true,
              enforce: true,
            },
            elementUI: {
              name: "chunk-elementui",
              test: /[\\/]node_modules[\\/]element-ui[\\/]/,
              chunks: "all",
              priority: 3,
              reuseExistingChunk: true,
              enforce: true,
            },
            vuedraggable: {
              name: "chunk-vuedraggable",
              test: /[\\/]node_modules[\\/]vuedraggable[\\/]/,
              chunks: "all",
              priority: 8,
              reuseExistingChunk: true,
              enforce: true,
            },
            zrender: {
              name: "chunk-zrender",
              test: /[\\/]node_modules[\\/]zrender[\\/]/,
              chunks: "all",
              priority: 10,
              reuseExistingChunk: true,
              enforce: true,
            },
          },
        },
      },
      module: {
        rules: [],
      },
    }),
    chainWebpack(config) {
      if (!isProd) {
        config.optimization.minimizers.delete("terser");
        config.optimization.minimizers.delete("css");
        config.module
          .rule("js")
          .test(/\.jsx$/)
          .exclude.add(/node_modules/)
          .end();
        config.module
          .rule("jsEsbuild")
          .test(/\.js$/)
          .exclude.add(/node_modules/)
          .end()
          .use("esbuild")
          .loader("esbuild-loader")
          .options({
            loader: "js",
            target: "es2015",
          })
          .end();
      }
    
      config.module.rule("svg").exclude.add(resolve("src/icons")).end();
      config.module
        .rule("icons")
        .test(/\.svg$/)
        .include.add(resolve("src/icons"))
        .end()
        .use("svg-sprite-loader")
        .loader("svg-sprite-loader")
        .options({
          symbolId: "icon-[name]",
        })
        .end();
      config.plugin("html").tap((args) => {
        const date = new Date().toLocaleString();
        args[0].createDate = date;
        return args;
      });
    },

    });

    function resolve(dir) {
    return path.join(__dirname, dir);
    }

相关推荐
多加点辣也没关系10 小时前
JavaScript|第4章:类型转换
开发语言·javascript
yqcoder10 小时前
httpOnly 是什么,又有什么用?
开发语言·前端·javascript
烬羽10 小时前
还在手动拼路径、写回调地狱?一文吃透 Node.js 的 path 和 fs
javascript·程序员·node.js
mONESY11 小时前
LangChain JS 高性能并行执行解析、工具调用底层封装
javascript
迅速的自行车12 小时前
从一段模板说起
前端·javascript·vue.js
YIAN12 小时前
LangChain JS 工具调用实战:基于 DeepSeek-V4-Flash 实现本地文件读取 AI 代码助手(完整可运行源码)
javascript·langchain·前端框架
尼斯湖皮皮怪12 小时前
iceCoder 记忆系统深度分析
前端·javascript
爸爸61912 小时前
07 ArkTS 基础类型与接口定义:从 TypeScript 到鸿蒙的类型升级
javascript·华为·typescript·harmonyos·鸿蒙系统
默_笙13 小时前
🌏 MCP 是 AI 界的 USB-C:一个协议让所有模型都能用上所有工具
前端·javascript
月光刺眼15 小时前
用LangChain 打造第一个 Agent:LLM 大脑与 Tool 手脚的完整闭环
javascript·人工智能·全栈