fix: 修复文件路径修改后的引用bug

This commit is contained in:
范鹏 2025-03-28 17:08:06 +08:00
parent 5ba64b814b
commit 9b47ddea95
3 changed files with 3 additions and 3 deletions

View File

@ -181,7 +181,7 @@
import { useBasicStore } from '@/stores/basic'
import { deleteKeyRequest } from '@/api/key'
import { deleteLockRequest } from '@/api/lock'
import { setStorage, getStorage } from '../../utils/storage'
import { setStorage, getStorage } from '@/utils/storage'
export default {
data() {

View File

@ -54,7 +54,7 @@
import { updateLockSettingRequest } from '@/api/setting'
import { useBluetoothStore } from '@/stores/bluetooth'
import { useUserStore } from '@/stores/user'
import { useBasicStore } from '../../stores/basic'
import { useBasicStore } from '@/stores/basic'
const $basic = useBasicStore()
const $bluetooth = useBluetoothStore()

View File

@ -1,5 +1,5 @@
import { defineStore } from 'pinia'
import { getNotificationList } from '../api/notification'
import { getNotificationList } from '@/api/notification'
export const useNotificationStore = defineStore('notification', {
state() {