Move terminal.html to dashboard

This commit is contained in:
Johannes Zellner
2024-10-04 21:04:08 +02:00
parent bc4e6ab1de
commit 9d7f12952d
10 changed files with 50 additions and 5 deletions

16
dashboard/src/terminal.js Normal file
View File

@@ -0,0 +1,16 @@
import { createApp } from 'vue';
import './style.css';
import '@fontsource/noto-sans';
import i18n from './i18n.js';
import Terminal from './components/Terminal.vue';
(async function init() {
const app = createApp(Terminal);
app.use(await i18n());
app.mount('#app');
})();