()
| 113 | } |
| 114 | |
| 115 | updateToggleButtons() { |
| 116 | const buttons = document.querySelectorAll('.theme-toggle'); |
| 117 | buttons.forEach(btn => { |
| 118 | btn.innerHTML = this.theme === 'light' ? '🌙' : '☀️'; |
| 119 | btn.title = this.theme === 'light' ? '切换到暗色模式' : '切换到亮色模式'; |
| 120 | }); |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | // 全局主题实例 |