From fb4fcc1b8d5bf5740bf160ec63003bfce1ebac12 Mon Sep 17 00:00:00 2001 From: all123all Date: Mon, 13 Nov 2023 15:58:18 +0000 Subject: [PATCH] add install pinia --- store/store.js | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 store/store.js diff --git a/store/store.js b/store/store.js new file mode 100644 index 0000000..01b656d --- /dev/null +++ b/store/store.js @@ -0,0 +1,4 @@ +import { defineStore } from 'pinia' +export const useAlertsStore = defineStore('alerts', { + // other options... +})