oh-vue-icons
Advanced tools
Changelog
v1.0.0-rc3 (2022-04-24)
iconpacks: bump iconpacks:
Changelog
v1.0.0-rc2 (2022-01-27)
export type CustomizeIconType
(90da087) (#18, #19), which can be imported by
import type { CustomizeIconType } from "oh-vue-icons";
iconpacks: bump iconpacks (d0a76db)
Changelog
1.0.0-rc1 (2021-10-14)
import paths have changed:
Vue 3:
- import OhVueIcon from "oh-vue-icons/dist/v3/icon.es";
+ import { OhVueIcon, addIcons } from "oh-vue-icons";
- OhVueIcon.add(FaFlag)
+ addIcons(FaFlag)
Vue 2:
- import OhVueIcon from "oh-vue-icons";
+ import { OhVueIcon, addIcons } from "oh-vue-icons";
- OhVueIcon.add(FaFlag)
+ addIcons(FaFlag)
@vue/composition-api
is needed for Vue 2, @nuxtjs/composition-api is needed for Nuxt 2.
Changelog
0.4.7 (2021-08-02)
Changelog
0.4.6 (2021-07-25)
Changelog
~~0.4.4 (2021-07-11)~~
This version has been DEPRECATED (see #15), use v0.4.5 or above instead.
Changelog
0.4.3 (2021-05-08)
Changelog
0.4.2 (2021-04-14)
Changelog
0.4.1 (2021-03-29)
expand data argument to remove need of array whem import icons (c32a79b) (#10)
use rollup to bundle the component in esm format (4a31c95) (#9)
import paths have changed:
Icons:
- OhVueIcon.add([FaFlag, RiZhihuFill]);
+ OhVueIcon.add(FaFlag, RiZhihuFill);
Vue 3:
- import OhVueIcon from "oh-vue-icons/dist/v3/icon.umd.min";
+ import OhVueIcon from "oh-vue-icons/dist/v3/icon.es";