<svg-icon icon-class="lu" className="icon"> </svg-icon>这样使用svg有问题吗
时间: 2024-05-26 11:14:17 浏览: 156
这个代码片段是使用 Vue.js 的组件方式来使用 SVG 图标的。如果你的项目中有引入 Vue.js 并且已经注册了 `svg-icon` 组件,那么这样使用 SVG 是没有问题的。只要确保你引入的 SVG 图标文件是有效的,并且被正确地传递到组件中就可以了。不过,如果你使用的是其他的框架或者纯 HTML/CSS/JS,那么就需要使用其他的方式来使用 SVG 图标。例如,可以使用 `img` 标签、`object` 标签或者 `svg` 标签等来引入 SVG 图标文件。
相关问题
vue2使用<svg-icon/>组件
<-icon/>组件是一个可以在Vue2中使用的SVG图标组件,它可以方便地将SVG图标作为组件使用,并且可以很容易地自定义图标的大小、颜色等属性。
首先,你需要安装svg-sprite-loader和svg4everybody这两个依赖包。你可以使用以下命令进行安装:
```
npm install svg-sprite-loader svg4everybody --save-dev
```
然后,在src目录下创建一个icons目录,并将所有的SVG图标放到该目录下。
接着,在src目录下创建一个svg文件夹,用于存放SVG图标的Sprite文件。在svg文件夹下创建一个sprite.svg文件。
然后,在webpack.base.conf.js文件中添加以下代码:
```javascript
const path = require('path')
const ExtractTextPlugin = require('extract-text-webpack-plugin')
function resolve(dir) {
return path.join(__dirname, '..', dir)
}
module.exports = {
// ...
module: {
rules: [
// ...
// 配置svg-sprite-loader
{
test: /\.svg$/,
loader: 'svg-sprite-loader',
include: [resolve('src/icons')],
options: {
symbolId: 'icon-[name]'
}
}
]
},
// ...
}
```
接下来,在src目录下创建一个components目录,并在其中创建一个SvgIcon.vue文件,该文件用于渲染SVG图标。
```html
<template>
<svg :class="svgClass" aria-hidden="true">
<use :xlink:href="iconName" />
</svg>
</template>
<script>
export default {
name: 'SvgIcon',
props: {
iconClass: {
type: String,
required: true
},
className: {
type: String,
default: ''
}
},
computed: {
iconName() {
return `#icon-${this.iconClass}`
},
svgClass() {
if (this.className) {
return 'svg-icon ' + this.className
} else {
return 'svg-icon'
}
}
}
}
</script>
<style scoped>
.svg-icon {
width: 1em;
height: 1em;
vertical-align: -0.15em;
fill: currentColor;
overflow: hidden;
}
</style>
```
最后,在main.js文件中引入svg4everybody,并在Vue实例中注册SvgIcon组件:
```javascript
import 'svg4everybody'
import SvgIcon from '@/components/SvgIcon'
Vue.component('svg-icon', SvgIcon)
```
现在,你可以在Vue组件中使用<svg-icon/>组件来使用SVG图标了。例如:
```html
<template>
<div>
<svg-icon icon-class="search" />
</div>
</template>
```
其中,icon-class属性指定了要使用的SVG图标的名称,该名称与icons目录下的SVG文件名相同。
vue2中使用<svg-icon/>组件
在 Vue2 中使用 `<svg-icon/>` 组件,需要先安装 `svg-sprite-loader` 和 `svg4everybody` 依赖。
1. 安装依赖
```bash
npm install svg-sprite-loader svg4everybody --save-dev
```
2. 创建 `svg` 文件夹,放置 `svg` 图标文件
3. 在 `vue.config.js` 文件中配置 `svg-sprite-loader`
```js
module.exports = {
chainWebpack: config => {
const svgRule = config.module.rule('svg');
// 清除已有的所有 loader。
// 如果你不这样做,接下来的 loader 会附加在该规则现有的 loader 之后。
svgRule.uses.clear();
// 添加要使用的 loader
svgRule
.use('svg-sprite-loader')
.loader('svg-sprite-loader')
.options({
symbolId: 'icon-[name]'
});
}
};
```
4. 创建 `SvgIcon.vue` 组件
```vue
<template>
<svg :class="svgClass" aria-hidden="true" v-on="$listeners">
<use :xlink:href="iconName" />
</svg>
</template>
<script>
export default {
name: 'SvgIcon',
props: {
iconClass: {
type: String,
required: true
},
className: {
type: String,
default: ''
}
},
computed: {
iconName() {
return `#icon-${this.iconClass}`;
},
svgClass() {
if (this.className) {
return 'svg-icon ' + this.className;
} else {
return 'svg-icon';
}
}
}
};
</script>
<style scoped>
.svg-icon {
width: 1em;
height: 1em;
vertical-align: -0.15em;
fill: currentColor;
overflow: hidden;
}
</style>
```
5. 在组件中使用 `<svg-icon/>`
```vue
<template>
<div>
<svg-icon icon-class="xxx" />
</div>
</template>
<script>
import SvgIcon from '@/components/SvgIcon';
export default {
name: 'Example',
components: {
SvgIcon
}
};
</script>
```
阅读全文