9 lines
153 B
JavaScript
9 lines
153 B
JavaScript
import { defineStore } from "pinia";
|
|
|
|
export const useErrorStore = defineStore("error", {
|
|
state: () => ({
|
|
message: null,
|
|
errors: {},
|
|
}),
|
|
});
|