mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-21 04:50:14 +08:00
35 lines
600 B
Markdown
35 lines
600 B
Markdown
# Use Naive Element
|
|
Naive UI has n-element component. See [Element](n-element).
|
|
```html
|
|
<n-config-provider :theme="theme">
|
|
<n-button @click="theme = 'dark'">Dark</n-button>
|
|
<n-button @click="theme = 'light'">Light</n-button>
|
|
<n-el as="span" class="oops">
|
|
I am a span
|
|
</n-el>
|
|
</n-config-provider>
|
|
```
|
|
```js
|
|
export default {
|
|
data () {
|
|
return {
|
|
theme: 'dark'
|
|
}
|
|
}
|
|
}
|
|
```
|
|
```css
|
|
.oops {
|
|
color: black;
|
|
transition: color .3s cubic-bezier(.4, 0, .2, 1);
|
|
}
|
|
.oops.n-light-theme {
|
|
color: green
|
|
}
|
|
.oops.n-dark-theme {
|
|
color: yellow
|
|
}
|
|
.n-button {
|
|
margin: 0 12px 8px 0;
|
|
}
|
|
``` |