我使用最新的Vue CLI创建了一个应用。
我正在使用vue-storybook生成样式指南。
我在名为icons.svg的资产下有一个SVG Sprite文件,我想创建一个Icon.vue组件,它接受图标的名称并从精灵中显示它。
该组件如下所示:
//currently the href is hardcoded for testing purposes,
//later on it would be passed as a property
<template>
<svg class="icon">
<use xlink:href="../assets/icons.svg#icon-compliance"></use>
</svg>
</template>
<script>
export default {
name: "AqIcon"
};
</script>
<style scoped>
.icon {
display: inline-block;
width: 1rem;
height: 1rem;
fill: red;
}
</style>
我有一个简单的故事来展示它:
storiesOf("Icon", module).add("Icon", () => ({
components: { AqIcon },
template: "<AqIcon />"
}));
问题是浏览器尝试加载http://localhost:6006/assets/icons.svg
并找不到它,我尝试了所有类型的网址,但我似乎找不到正确的网址。
另外,我怎样才能让它变得动态?
答案 0 :(得分:3)
您可以使用require()
。只要确保你没有参数化它的整个args(我的意思是,将文件夹和扩展名保留为硬编码字符串)。
在下面的示例中,WebPack将加载.svg
文件夹的所有/assets
个文件(因为它们可能在运行时被请求)。
<template>
<svg class="icon">
<use :xlink:href="src"></use>
</svg>
</template>
<script>
export default {
name: "AqIcon",
props: ['icon'],
computed: {
src() {
return require('../assets/' + this.icon + '.svg')
}
}
};
</script>
答案 1 :(得分:0)
通过使其成为自己的Vue组件,在标记中包含SVG精灵。就我而言,我将SVG Sprite组件放入App.vue。
App.vue:
<template>
<div class="body">
<YourOtherComponents />
<SvgSprite />
</div>
</template>
<script>
import YourOtherComponents from './Components/YourOtherComponents.vue';
import SvgSprite from './Components/SvgSprite.vue';
export default {
name: 'App',
components: {
YourOtherComponents,
SvgSprite,
},
};
</script>
SvgSprite.vue:
<template>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="display: none;">
<symbol id="arrow-left" viewBox="0 0 24 24">
<polyline points="15 18 9 12 15 6"></polyline>
</symbol>
<symbol id="arrow-right" viewBox="0 0 24 24">
<polyline points="9 18 15 12 9 6"></polyline>
</symbol>
</svg>
</template>
<script>
export default {
name: 'SvgSprite',
};
</script>
通过这种方式,您可以像在项目的index.html文件中内嵌精灵一样使用svg。只是更干净。