mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-06 12:17:13 +08:00
717 B
717 B
使用元素组件
Naive UI 提供 n-element
组件,参考 Element。
<n-space vertical>
<n-space>
<n-button @click="theme = darkTheme">深色</n-button>
<n-button @click="theme = null">浅色</n-button>
</n-space>
<n-config-provider :theme="theme">
<n-card>
<n-el
tag="span"
style="color: var(--primary-color); transition: .3s var(--cubic-bezier-ease-in-out);"
>
我是个 span 标签
</n-el>
</n-card>
</n-config-provider>
</n-space>
import { ref } from 'vue'
import { darkTheme } from 'naive-ui'
export default {
setup () {
return {
darkTheme,
theme: ref(null)
}
}
}