我在nuxt.config.js
vuetify
设置中默认设置了深色主题,并通过dark: false
激活了该主题。如何在夜间自动激活它?
答案 0 :(得分:1)
我终于用这种方式解决了它:
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)
}
}