Add (new post)

This commit is contained in:
2023-07-29 02:20:51 +08:00
parent cb371fae26
commit 58b939f72e
26 changed files with 3754 additions and 62 deletions

View File

@@ -0,0 +1,8 @@
import { defineStore } from "pinia";
export const useErrorStore = defineStore("error", {
state: () => ({
message: null,
errors: {},
}),
});