feat: colorize function

This commit is contained in:
opbnq-q
2025-03-10 07:35:24 -07:00
parent 6bf4f1e289
commit ccde027c83
4 changed files with 22 additions and 9 deletions

View File

@@ -2,9 +2,7 @@
import { Dialog } from "primevue";
import { useErrorStore } from "./stores/error.store";
import CommentScheme from "./comment/CommentScheme.vue";
import PostScheme from "./post/PostScheme.vue";
import PosttypeScheme from "./posttype/PosttypeScheme.vue";
import AuthorScheme from "./author/AuthorScheme.vue";
const errorStore = useErrorStore();
</script>
@@ -19,9 +17,6 @@ const errorStore = useErrorStore();
<h1 class="text-red-500 text-2xl">{{ errorStore.message }}</h1>
</Dialog>
<main class="w-screen h-screen">
<CommentScheme></CommentScheme>
<PostScheme></PostScheme>
<PosttypeScheme></PosttypeScheme>
<AuthorScheme></AuthorScheme>
</main>
</template>