Newer
Older
smart-home-server / webclient / src / app / App.vue
<template>
  <AppShell>
    <GnToastProvider>
      <AppErrorBoundary>
        <RouterView />
      </AppErrorBoundary>
    </GnToastProvider>
  </AppShell>
</template>

<script setup>
import { RouterView } from "vue-router";
import { GnToastProvider } from "gnexus-ui-kit/vue";
import AppShell from "../components/layout/AppShell.vue";
import AppErrorBoundary from "../components/feedback/AppErrorBoundary.vue";
</script>