Skip to content

v1.0.0-rc1

Compare
Choose a tag to compare
@Renovamen Renovamen released this 14 Oct 06:54
· 20 commits to master since this release

BREAKING CHANGES

  • 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.

Features