mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
667 B
667 B
使用元素组件
Naive UI 提供 n-element
组件,参考 Element。
<div>
<n-button @click="theme = 'dark'">深色</n-button>
<n-button @click="theme = 'light'">浅色</n-button>
</div>
<n-config-provider :theme="theme">
<n-card>
<n-el as="span" class="oops">
我是个 span 标签
</n-el>
</n-card>
</n-config-provider>
export default {
data () {
return {
theme: 'dark'
}
}
}
.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;
}