位置: IT常识 - 正文

vue3使用svg图标多种方式(vue引用svg矢量图)

编辑:rootadmin
vue3使用svg图标多种方式

推荐整理分享vue3使用svg图标多种方式(vue引用svg矢量图),希望有所帮助,仅作参考,欢迎阅读内容。

文章相关热门搜索词:vue svga,vue中使用svg图标,vue3 svg,vue-svg-loader,vue中使用svg图标,vue svgicon,vue3 svg,vue3 svg,内容如对您有帮助,希望把文章链接给更多的朋友!

方式1使用在线链接访问 在iconfont找到自己的项目的图标选择Symbol获取在线链接 2:在vue3项目中找到public的index.html进行script进行引入

打开浏览器看:这样就会自动注入到body下

在项目直接使用

//控制图标的大小 <svg style="width: 10px; height: 10px"> <use href="#icon-shanchu"></use> </svg>

显示出了删除的图标

封装的写法(上面的代码写着太重复下面进行封装) 1:新建一个专门获取svg图标的组件 icon.vue (svg/index.vue)

<template> <div> <svg :style="style"> <use :href="names"></use> </svg> </div></template><script setup>import { defineProps, withDefaults } from "vue";const props = defineProps({ name: { type: String, default: "", }, style: { type: Object, default: () => { return { width: 10, height: 10, color: "", }; }, },});const names = `#${props.name}`;</script><style lang="scss" scoped></style>vue3使用svg图标多种方式(vue引用svg矢量图)

需要显示图标的界面

<template> <div class="home"> <icon :style="{ width: 10, height: 10, color: 'red' }" name="icon-shanchu" ></icon> <icon :style="{ width: 10, height: 10, color: 'red' }" name="icon-shanchu" ></icon> </div></template><script setup>import { ref } from "vue";import icon from "../assets/svg/index.vue";</script><style lang="scss"></style>

假如你既引用了iconfont的图标也自定义了图标:直接放在一起根据传输的name指定使用哪一个图标 icon.vue (svg/index.vue)

<template> <div> <svg :style="style"> <use :href="names"></use> </svg> // 自定义的图标 <svg width="0" height="0"> <defs> <symbol id="more" viewBox="0 0 100 100"> <circle r="5" cx="20" cy="25" fill="transparent" stroke="green" ></circle> <circle r="5" cx="20" cy="50" fill="currentColor"></circle> <circle r="5" cx="20" cy="75" fill="currentColor"></circle> <line x1="40" y1="25" x2="90" y2="25" stroke-width="8" stroke="currentColor" ></line> <line x1="40" y1="50" x2="90" y2="50" stroke-width="8" stroke="currentColor" ></line> <line x1="40" y1="75" x2="90" y2="75" stroke-width="8" stroke="currentColor" ></line> </symbol> </defs> </svg> </div></template><script setup>import { defineProps, withDefaults } from "vue";const props = defineProps({ name: { type: String, default: "", }, style: { type: Object, default: () => { return { width: 10, height: 10, color: "", }; }, },});const names = `#${props.name}`;</script><style lang="scss" scoped></style>

使用:

<template> <div class="home"> <icon :style="{ width: 10, height: 10, color: 'red' }" name="icon-shanchu" ></icon> <icon :style="{ width: 10, height: 10, color: 'red' }" name="icon-shanchu1" ></icon> <icon :style="{ width: 20, height: 20, color: 'red' }" name="more"></icon> </div></template><script setup>import { ref } from "vue";import icon from "../assets/svg/index.vue";</script><style lang="scss"></style>

假如你是复制的iconfont官网的图标svg的代码:

你直接cv到项目也可以直接使用:

<svg t="1673881805558" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1076" width="200" height="200" > <path d="M658.276045 767.993958 658.276045 274.295l329.126 0L987.402045 219.44 658.276 219.44l0-18.281c0-80.787046-65.492992-146.284032-146.276045-146.284032-80.790016 0-146.276045 65.496986-146.276045 146.284032l0 18.281L36.597 219.44l0 54.855 109.695 0 0 694.83L877.7 969.125l0-548.55-54.855 0L822.845 914.27l-621.69 0L201.155 274.295l164.569 0 0 493.699 54.848 0L420.572 274.295l182.85 0 0 493.699L658.276 767.994zM420.571034 219.440026l0-18.281c0-50.492006 40.932966-91.420979 91.428966-91.420979 50.489037 0 91.420979 40.928973 91.420979 91.420979l0 18.281L420.571 219.440026z" p-id="1077" ></path> </svg>

效果如下:

我们还可以把上面的代码进行改造直接使用在 icon.vue (svg/index.vue)改造

<template> <div class="home"> <icon :style="{ width: 10, height: 10, color: 'red' }" name="icon-shanchu" ></icon> <icon :style="{ width: 10, height: 10, color: 'red' }" name="icon-shanchu1" ></icon> <icon :style="{ width: 20, height: 20, color: 'red' }" name="more"></icon> <svg t="1673881805558" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1076" width="200" height="200" > <path d="M658.276045 767.993958 658.276045 274.295l329.126 0L987.402045 219.44 658.276 219.44l0-18.281c0-80.787046-65.492992-146.284032-146.276045-146.284032-80.790016 0-146.276045 65.496986-146.276045 146.284032l0 18.281L36.597 219.44l0 54.855 109.695 0 0 694.83L877.7 969.125l0-548.55-54.855 0L822.845 914.27l-621.69 0L201.155 274.295l164.569 0 0 493.699 54.848 0L420.572 274.295l182.85 0 0 493.699L658.276 767.994zM420.571034 219.440026l0-18.281c0-50.492006 40.932966-91.420979 91.428966-91.420979 50.489037 0 91.420979 40.928973 91.420979 91.420979l0 18.281L420.571 219.440026z" p-id="1077" ></path> </svg> //改造好了直接使用 <icon :style="{ width: 20, height: 20, color: 'red' }" name="icon"></icon> </div></template><script setup>import { ref } from "vue";import icon from "../assets/svg/index.vue";</script><style lang="scss"></style>

本文链接地址:https://www.jiuchutong.com/zhishi/293156.html 转载请保留说明!

上一篇:Vue实现生成二维码(vue生成二维码分享)

下一篇:【swinUnet官方代码测试自己的数据集(已训练完毕)】

  • 增值税发票进销项不一致
  • 对方给我公司开的红字发票如何查询
  • 教育培训学校怎么翻译
  • 中央空调折旧年限是多久
  • 附加税费申报表出不来数据
  • 个人境外存款利息收入收税
  • 固定资产正常报废如何处理
  • 企业所得税年报补报
  • 开发成本月末如何处理
  • 出口货物退回需要进口税吗
  • 一直不营业的企业叫什么
  • 劳务公司差额征税怎么计算
  • 把水费开成物业费发票有什么风险吗?
  • 运输发票的税率分类
  • 建筑业3%人工费可以开专票吗?
  • 一般纳税人如何零申报
  • 增加以前年度收入是否需要更正申报年报
  • 回购股票手续费会计分录
  • 母公司吸收合并全资子公司
  • 机会成本怎么计量
  • 季度所得税申报可以弥补以前年度亏损吗
  • 退休返聘人员的劳动权益保护
  • 单位购买短期保本理财产品如何做账?
  • 报销差旅费如何报税
  • 网络服务费一般纳税人几个点
  • 如何设置电脑任务栏显示
  • win7桌面快捷键是什么
  • 总公司中标分公司结算可以吗
  • 应交企业所得税和所得税费用区别
  • linux killall
  • 其他综合收益是什么意思
  • php初学
  • 盒装cpu和散装
  • igfxem.exe是什么进程
  • 期间费用的会计科目
  • 养老院护工5.8k包吃住
  • 应纳税所得额准予扣除的有
  • php连接数据库的基本步骤是什么
  • vue router-view路由详解
  • 论文导语如何写
  • 低值易耗品摊销方法
  • 差旅费津贴与差旅费补助
  • 河北汽车购置税税率
  • 税收优惠属于政府补助
  • phpcms怎么样
  • 毛利的计算公式为
  • 被盗的固定资产如何处理
  • 房屋出租收入是其他业务收入吗
  • 债务豁免的账务处理
  • linux 自启
  • mysql创建存储过程sql语句
  • 数据库系统中,用户通过什么访问数据
  • 网上商城功能
  • 员工工资能抵税吗
  • 公司个税如何申报流程
  • 小规模纳税人企业所得税2023
  • 出口收汇核销单的作用
  • 工程中标费用放哪个科目
  • 租赁房产税计税依据及计算方式是什么
  • 备用金怎么计入明细账
  • 出口抵减内销产品应纳税额在借方
  • 货款还没收到有违法所得吗
  • 生产型企业加计扣除10%
  • 租办公楼有什么讲究
  • 安装fedora33
  • win8.1笔记本
  • xp 关机
  • windows mobile
  • Linux中怎么安装nano已经有安装包了
  • win10系统故障恢复
  • windows 10移动版
  • 电脑qq清理
  • bat脚本编写教程菜鸟
  • mono为什么不能用了
  • jquery.validate[.unobtrusive]和Bootstrap实现tooltip错误提示问题分析
  • 文化事业建设费是什么税
  • 银行端查询缴税凭证怎么打印
  • 党建与内控合规风险防范相融合
  • 酒精税收分类编码查询
  • 企业所得税年报职工薪酬纳税调整明细表
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

    网站地图: 企业信息 工商信息 财税知识 网络常识 编程技术

    友情链接: 武汉网站建设