Skip to content

Instantly share code, notes, and snippets.

@pawelmysior
pawelmysior / SvgIcon.vue
Last active August 7, 2018 07:14 — forked from calebporzio/SvgIcon.vue
SVG Icon Vue Component
<template>
<div v-html="require('!!html-loader!./../../../svg/zondicons/' + this.icon + '.svg')" v-once></div>
</template>
<script>
export default {
props: ['icon'],
mounted() {
this.$el.firstChild.classList.add(...this.$el.className.split(' '));
this.$el.firstChild.classList.add('fill-current');