vue-feather
Feather icons component for Vue 3.
Main files
dist/
├── vue-feather.js (UMD, default)
├── vue-feather.min.js (UMD, compressed)
├── vue-feather.esm.js (ECMAScript Module)
└── vue-feather.esm.min.js (ECMAScript Module, compressed)
Getting started
Installation
npm install vue@next feather-icons vue-feather@next
In browser:
<script src="/path/to/vue.js"></script>
<script src="/path/to/feather.js"></script>
<script src="/path/to/vue-feather.js"></script>
Usage
import { createApp } from 'vue';
import VueFeather from 'vue-feather';
const app = createApp({});
app.component(VueFeather.name, VueFeather);
<vue-feather type="feather"></vue-feather>
Browser support
Same as Vue 3.
Versioning
Maintained under the Semantic Versioning guidelines.
License
MIT © Chen Fengyuan