mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
487001d697
.demo.md for component demo .demo-entry.md for demo entry .md for common docs
31 lines
614 B
Markdown
31 lines
614 B
Markdown
# Theme Environments
|
|
Get current theme environment.
|
|
```html
|
|
<n-button @click="theme = 'dark'">Dark Theme</n-button>
|
|
<n-button @click="theme = 'light'">Light Theme</n-button>
|
|
<n-config-provider :theme="theme" :theme-environments="env">
|
|
<n-config-consumer v-slot="{ themeEnvironment }">
|
|
<n-card>
|
|
<n-tag>{{ themeEnvironment }}</n-tag>
|
|
</n-card>
|
|
</n-config-consumer>
|
|
</n-config-provider>
|
|
```
|
|
```js
|
|
export default {
|
|
data () {
|
|
return {
|
|
theme: 'dark',
|
|
env: {
|
|
dark: 'NaCl',
|
|
light: 'Ionic Compound'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
```
|
|
```css
|
|
.n-button {
|
|
margin: 0 8px 12px 0;
|
|
}
|
|
``` |