我在nuxt.config.js
vuetify
设置中默认设置了深色主题,并通过dark: false
激活。如何在夜间自动激活它?
我终于以这种方式解决了它:
mounted() {
this.setTheme()
},
methods: {
setTheme() {
const today = new Date()
today.getHours() < 8 || today.getHours() > 20
? (this.$vuetify.theme.isDark = true)
: (this.$vuetify.theme.isDark = false)
}
}