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

17 lines
291 B
JavaScript
Raw Normal View History

2023-07-12 13:21:21 +02:00
import { createApp } from 'vue';
import './style.css';
2023-07-14 14:48:43 +02:00
import '@fontsource/noto-sans';
2023-07-12 13:21:21 +02:00
import i18n from './i18n.js';
2023-07-12 13:21:21 +02:00
import LogsViewer from './components/LogsViewer.vue';
(async function init() {
2023-07-12 13:21:21 +02:00
const app = createApp(LogsViewer);
app.use(await i18n());
2023-07-12 13:21:21 +02:00
app.mount('#app');
})();