Files
cloudron-box/dashboard/src/index.js
T

21 lines
349 B
JavaScript
Raw Normal View History

2024-11-01 14:16:09 +01:00
import { createApp } from 'vue';
import './style.css';
import '@fontsource/noto-sans';
2024-12-26 12:19:48 +01:00
import { tooltip } from 'pankow';
2024-11-01 14:16:09 +01:00
import i18n from './i18n.js';
import Index from './components/Index.vue';
(async function init() {
const app = createApp(Index);
app.use(await i18n());
2024-12-26 12:19:48 +01:00
app.directive('tooltip', tooltip);
app.mount('#app');
2024-11-01 14:16:09 +01:00
})();