A single-file Vue functional component for the Simple Icons set.
npm i simple-icons-vue
There are two ways to use the component:
Option 1. Install the component globally:
import Vue from 'vue'
import SimpleIconsVue from 'simple-icons-vue'
Vue.use(SimpleIconsVue)
Option 2. Import the component as needed
<template lang="html">...</template>
<script>
import { SimpleIcon } from 'simple-icons-vue'
export default {
components: {
SimpleIcon,
},
...
}
</script>
Also check out the Eva Icons equivalent of this component.