Recommended vue-feather-icons for your project
Vue component for Feather
npm install vue-feather-icon
// main.js
import Vue = from 'vue'
import VueFeatherIcon from 'vue-feather-icon'
Vue.use(VueFeatherIcon)
<template>
<feather-activity></feather-activity>
<!-- or -->
<feather-icon type="activity"></feather-icon>
</template>
<script>
import { Activity } from 'vue-feather-icon'
export default {
components: {
ActivityIcon: Activity
}
}
</script>
<template>
<activity-icon></activity-icon>
</template>