HomeDashboard/.venv/lib/python3.12/site-packages/nicegui/elements/dark_mode.js
2026-01-03 14:54:18 +01:00

17 lines
238 B
JavaScript

export default {
mounted() {
this.update();
},
updated() {
this.update();
},
methods: {
update() {
Quasar.Dark.set(this.value === null ? "auto" : this.value);
},
},
props: {
value: Boolean,
},
};