chore: 删除v console.log #96

This commit is contained in:
LOG1997
2025-12-10 22:15:28 +08:00
parent fa79e9b07e
commit 5c75440c5b
6 changed files with 0 additions and 6 deletions

View File

@@ -153,7 +153,6 @@ watch(backgroundImageValue, (val) => {
globalConfig.setBackground(val)
})
watch(currentFontValue, (val) => {
console.log('currentFontValue', val)
globalConfig.setFont(val)
document.documentElement.style.setProperty('--app-font-family', `"${val}", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif`)
}, { immediate: true })

View File

@@ -49,7 +49,6 @@ async function getImageDbStore() {
const keys = await imageDbStore.keys()
if (keys.length > 0) {
imageDbStore.iterate((value: { fileName: string, dataUrl: string }, key: string) => {
console.log(value, key)
globalConfig.addImage({
id: key,
name: value.fileName,