Package Exports
- @iconify-prerendered/vue-et
- @iconify-prerendered/vue-et/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@iconify-prerendered/vue-et) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@iconify-prerendered
A set of independent, generated view components for iconify icons.
Installation
Install the appropriate icon set
npm i @iconify-prerendered/vue-<icon-set-name>
# Bootstrap Icons
npm i @iconify-prerendered/vue-bi
# Material Design Icons
npm i @iconify-prerendered/vue-mdi
Usage
Just import icon-component from set like usual.
<script setup>
import { IconAccount } from '@iconify-prerendered/vue-mdi'
</script>
<template>
<a>
<IconAccount/>
Go to account
</a>
</template>
That's all you need.