From d223a5b029e5c7a2d2f66f2669e3cdea7293cba1 Mon Sep 17 00:00:00 2001 From: carlosjr Date: Wed, 9 Mar 2022 16:53:01 +0100 Subject: [PATCH] custom icons importation --- src/App.vue | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/App.vue b/src/App.vue index 0b9dbc8a7cb..2b46c98054a 100644 --- a/src/App.vue +++ b/src/App.vue @@ -7,16 +7,11 @@ import { useQuasar } from 'quasar'; const quasar = useQuasar(); quasar.iconMapFn = (iconName) => { - // iconName is the content of QIcon "name" prop - - // your custom approach, the following - // is just an example: - if (iconName.startsWith('vn:') === true) { - // we strip the "app:" part + if (iconName.startsWith('vn:')) { const name = iconName.substring(3); return { - cls: 'icon-' + name, + cls: `icon-${name}`, }; } };