Newer
Older
smart-home-server / webclient-vue / src / app / App.vue
@Eugene Sukhodolskiy Eugene Sukhodolskiy 15 hours ago 423 bytes Add toast notifications for mutations (Phase 3)
<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>