Skip to content

Commit

Permalink
fix: uncleared history (#354)
Browse files Browse the repository at this point in the history
  • Loading branch information
YangFong authored Aug 25, 2024
1 parent 1904ab4 commit 8323604
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/stores/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,16 +139,20 @@ export const useStore = defineStore(`store`, () => {
// 自定义 CSS 内容
const cssContent = useStorage(`__css_content`, DEFAULT_CSS_CONTENT)
const cssContentConfig = useStorage(addPrefix(`css_content_config`), {
active: `方案 1`,
active: `方案1`,
tabs: [
{
title: `方案 1`,
name: `方案 1`,
title: `方案1`,
name: `方案1`,
// 兼容之前的方案
content: cssContent.value || DEFAULT_CSS_CONTENT,
},
],
})
onMounted(() => {
// 清空过往历史记录
cssContent.value = ``
})
const getCurrentTab = () => cssContentConfig.value.tabs.find((tab) => {
return tab.name === cssContentConfig.value.active
})
Expand Down

0 comments on commit 8323604

Please sign in to comment.