Initial commit

This commit is contained in:
2025-11-17 08:44:00 +01:00
parent 5ef0bca588
commit 6b384d43ff
46 changed files with 7876 additions and 0 deletions

27
frontend/src/App.vue Normal file
View File

@@ -0,0 +1,27 @@
<template>
<v-app>
<app-header />
<v-main>
<router-view />
</v-main>
</v-app>
</template>
<script>
import { mapStores } from 'pinia'
import AppHeader from '@/components/AppHeader.vue'
import { useOpcuaStore } from '@/stores/opcua'
export default {
name: 'App',
components: {
AppHeader,
},
computed: {
...mapStores(useOpcuaStore),
},
mounted() {
this.opcuaStore.connect()
},
};
</script>