mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-21 04:50:14 +08:00
663 B
663 B
Get Theme
Use n-config-consumer
to get the theme at current position.
<div>
<n-button @click="theme = 'dark'">Dark</n-button>
<n-button @click="theme = 'light'">Light</n-button>
</div>
<n-config-provider :theme="theme">
<n-card>
<n-config-consumer
@theme-change="handleThemeChange"
v-slot="{ theme }"
>
<div>theme: {{ theme }}</div>
</n-config-consumer>
</n-card>
</n-config-provider>
export default {
data () {
return {
theme: 'dark'
}
},
methods: {
handleThemeChange (theme) {
this.$NMessage.info(theme)
}
}
}
.n-button {
margin: 0 12px 8px 0;
}