mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-01-21 17:23:48 -05:00
Switch new display to Vue
This commit is contained in:
14
WebDisplay/src/main.ts
Normal file
14
WebDisplay/src/main.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { registerPlugins } from '@/plugins';
|
||||
|
||||
import App from './App.vue';
|
||||
|
||||
import { createApp } from 'vue';
|
||||
import { createPinia } from 'pinia';
|
||||
|
||||
const pinia = createPinia();
|
||||
const app = createApp(App);
|
||||
|
||||
registerPlugins(app);
|
||||
|
||||
app.use(pinia);
|
||||
app.mount('#app');
|
||||
Reference in New Issue
Block a user