feat(core): 独立使用新的localStorage区域,避免与2.0共用

This commit is contained in:
王立帮
2025-05-10 16:01:15 +08:00
parent 1354d619d0
commit d42fa3d3b8
4 changed files with 6 additions and 6 deletions

View File

@@ -6,7 +6,7 @@
window.VIEW = scriptUrl.searchParams.get('view') || 'board';
let config = {};
try {
config = JSON.parse(localStorage.getItem('mixly2.0') ?? '{}');
config = JSON.parse(localStorage.getItem('mixly3.0') ?? '{}');
} catch (error) {
console.log(error);
}