This repository has been archived on 2025-03-16. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
boilerplate/frontend/src/App.vue
2025-03-10 07:35:24 -07:00

23 lines
647 B
Vue

<script setup lang="ts">
import { Dialog } from "primevue";
import { useErrorStore } from "./stores/error.store";
import CommentScheme from "./comment/CommentScheme.vue";
import PosttypeScheme from "./posttype/PosttypeScheme.vue";
const errorStore = useErrorStore();
</script>
<template>
<Dialog
v-model:visible="errorStore.show"
maximizable
class="w-[400px] h-[400px]"
>
<template #header> Ошибка </template>
<h1 class="text-red-500 text-2xl">{{ errorStore.message }}</h1>
</Dialog>
<main class="w-screen h-screen">
<PosttypeScheme></PosttypeScheme>
</main>
</template>