naive-ui/demo/documentation/theme/enUS/element.demo.md
07akioni 487001d697 build: add changelog to site, refactor loader based on suffix
.demo.md for component demo
.demo-entry.md for demo entry
.md for common docs
2020-08-19 23:30:04 +08:00

39 lines
647 B
Markdown

# Use Naive Element
Naive UI has `n-element` component. See [Element](n-element).
```html
<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-el as="span" class="oops">
I am a span
</n-el>
</n-card>
</n-config-provider>
```
```js
export default {
data () {
return {
theme: 'dark'
}
}
}
```
```css
.oops {
color: #000;
transition: color .3s cubic-bezier(.4, 0, .2, 1);
}
.oops.n-light-theme {
color: green
}
.oops.n-dark-theme {
color: aquamarine
}
.n-button {
margin: 0 12px 8px 0;
}
```