From 620dfd8a74a67b3874143392174e80e47972f25c Mon Sep 17 00:00:00 2001 From: yangsy Date: Wed, 27 Aug 2025 14:40:27 +0800 Subject: [PATCH] refactor: rename store id --- src/stores/line-alarms.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/line-alarms.ts b/src/stores/line-alarms.ts index f06d5f4..34ac585 100644 --- a/src/stores/line-alarms.ts +++ b/src/stores/line-alarms.ts @@ -2,7 +2,7 @@ import type { LineAlarms } from '@/composables/query'; import { defineStore } from 'pinia'; import { ref } from 'vue'; -export const useLineAlarmsStore = defineStore('line-alarms', () => { +export const useLineAlarmsStore = defineStore('ndm-line-alarms-store', () => { const lineAlarms = ref({}); return {