JSPM

  • Created
  • Published
  • Downloads 2
  • Score
    100M100P100Q45310F
  • License CC0-1.0

CoreUI Free components for Vue. Designed for ease of use and high performance

Package Exports

  • @iconify-prerendered/vue-cil
  • @iconify-prerendered/vue-cil/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-cil) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

CoreUI Free components for Vue. Designed for ease of use and high performance

Each icon in set is standalone component.

Features

  • Easy to use
    • No plugins required! Compatible with any build tools.
    • Zero dependencies.
    • SSR / SSG friendly.
    • TypeScript support.
  • High performance
    • Does not require any external resources like fonts, css, images.
    • The icon code is embedded in your bundle.
    • Supports tree shaking, so only those icons that you have used will be included in the bundle.
    • Works offline.
  • Powered by iconify.

Usage

<script setup>
// Import components as usual
import {
    IconAirplaneModeOff,
    IconBadge,
    IconColorBorder
} from '@iconify-prerendered/vue-cil'
</script>

<template>
  <!-- And just use it in template -->
  <IconAirplaneModeOff/>
  <IconBadge/>
  <IconColorBorder/>
</template>

Only these three icons will be included in your bundle. All other icons may be tree-shaken by your bundler.

That's all you need. No plugins, extra configs, IDE extensions or something else. It just works.

See full docs or other available icons sets.