FontAwesome Regular Vuetify

时间:2018-11-29 10:47:07

标签: vuejs2 font-awesome vuetify.js font-awesome-5

有人可以在vuetify.js中使用Font Awesome 5 Regular(Pro)图标的完整图标映射吗?我还找不到。它必须采用以下格式:

import Vue from 'vue'
import Vuetify from 'vuetify'

const MY_ICONS = {
  'complete': '',
  'cancel': '',
  'close': '',
  'delete': '', // delete (e.g. v-chip close)
  'clear': '',
  'success': '',
  'info': '',
  'warning': '',
  'error': '',
  'prev': '',
  'next': '',
  'checkboxOn': '',
  'checkboxOff': '',
  'checkboxIndeterminate': '',
  'delimiter': '', // for carousel
  'sort': '',
  'expand': '',
  'menu': '',
  'subgroup': '',
  'dropdown': '',
  'radioOn': '',
  'radioOff': '',
  'edit': ''
}

Vue.use(Vuetify, {
  icons: MY_ICONS
})

参考:https://vuetifyjs.com/en/framework/icons#using-custom-icons

在没有此映射的情况下,它将尝试使用实体(fas)图标。

谢谢。

0 个答案:

没有答案