naive-ui/demo/documentation/theme/enUS/element.md

39 lines
647 B
Markdown
Raw Normal View History

2019-12-07 00:02:31 +08:00
# Use Naive Element
Naive UI has `n-element` component. See [Element](n-element).
2019-12-07 00:02:31 +08:00
```html
<div>
<n-button @click="theme = 'dark'">Dark</n-button>
<n-button @click="theme = 'light'">Light</n-button>
</div>
2019-12-07 00:02:31 +08:00
<n-config-provider :theme="theme">
<n-card>
<n-el as="span" class="oops">
I am a span
</n-el>
</n-card>
2019-12-07 00:02:31 +08:00
</n-config-provider>
```
```js
export default {
data () {
return {
theme: 'dark'
}
}
}
```
```css
.oops {
color: #000;
2019-12-07 00:02:31 +08:00
transition: color .3s cubic-bezier(.4, 0, .2, 1);
}
.oops.n-light-theme {
color: green
}
.oops.n-dark-theme {
color: aquamarine
2019-12-07 00:02:31 +08:00
}
.n-button {
margin: 0 12px 8px 0;
}
```