Support fallback app icons

This commit is contained in:
Johannes Zellner
2025-01-06 21:28:01 +01:00
parent 132c1a9a8b
commit 3f2c7542f8
4 changed files with 20 additions and 19 deletions
+2 -1
View File
@@ -4,7 +4,7 @@ import './style.css';
import '@fontsource/noto-sans';
import { tooltip } from 'pankow';
import { tooltip, fallbackImage } from 'pankow';
import i18n from './i18n.js';
import Index from './components/Index.vue';
@@ -15,6 +15,7 @@ import Index from './components/Index.vue';
app.use(await i18n());
app.directive('tooltip', tooltip);
app.directive('fallback-image', fallbackImage);
app.mount('#app');
})();