mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-21 04:50:14 +08:00
343 B
343 B
useThemeVars
Naive UI provide useThemeVars
. It contains common theme variables.
<pre style="overflow: auto;">{{ themeVars }}</pre>
import { defineComponent } from 'vue'
import { useThemeVars } from 'naive-ui'
export default defineComponent({
setup () {
return {
themeVars: useThemeVars()
}
}
})