Added settings to backend and frontend.

This commit is contained in:
2026-02-02 03:41:56 +01:00
parent 2fb74839e4
commit c34b2391eb
10 changed files with 429 additions and 0 deletions
+4
View File
@@ -2,12 +2,16 @@
import { createApp } from 'vue'
import { createPinia } from 'pinia'
import App from './app.vue'
import {useLabelEditorStore} from "~/store/labelEditorStore";
const pinia = createPinia()
const app = createApp(App)
app.use(pinia)
app.mount('#app')
let store = useLabelEditorStore();
await store.loadSettings();
</script>
<template>