refactor: rename store id

This commit is contained in:
yangsy
2025-08-27 14:40:27 +08:00
parent 5cc4b2f537
commit 620dfd8a74

View File

@@ -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<LineAlarms>({});
return {