Merge to master #21

Merged
joan merged 163 commits from test into master 2022-10-20 11:59:30 +00:00
1 changed files with 2 additions and 7 deletions
Showing only changes of commit d223a5b029 - Show all commits

View File

@ -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}`,
};
}
};