We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
vuetify: { vuetifyOptions: { icons: { defaultSet: 'mdi', aliases, sets: { custom, mdi, }, }, },
Object literal may only specify known properties, and 'mdi' does not exist in type 'IconFontName[] | FontIconSet[]'.ts(2353) (property) mdi: IconSet
https://nuxt.vuetifyjs.com/guide/ https://vuetifyjs.com/en/features/icon-fonts/#usage
The text was updated successfully, but these errors were encountered:
[{ name: 'mdi'}, { name: 'custom', ???????????????}
Sorry, something went wrong.
Object literal may only specify known properties, and 'aliases' does not exist in type 'IconsOptions'.
interface IconsOptions { /** * @default 'mdi' */ defaultSet: IconSetName; /** * The prefix for UnoCSS Preset Icons. * * @default 'i-' */ unocssIconPrefix?: string; /** * Override the default mdi icons. * * Icon names should include the prefix and the collection, for example: * - home: i-<collection>:<icon> */ unocssIcons?: UnoCCSMdiIconSet; unocssAdditionalIcons?: Record<string, string>; sets?: IconFontName | IconFontName[] | FontIconSet[]; svg?: { mdi?: JSSVGIconSet; fa?: FontAwesomeSvgIconSet; }; }
No branches or pull requests
https://nuxt.vuetifyjs.com/guide/
https://vuetifyjs.com/en/features/icon-fonts/#usage
The text was updated successfully, but these errors were encountered: