mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-06 12:17:13 +08:00
17 lines
329 B
Markdown
17 lines
329 B
Markdown
# Style Scheme
|
|
|
|
```html
|
|
<n-element tag="div" class="myel">
|
|
<template #="{ styleScheme }">
|
|
<pre
|
|
:style="{
|
|
color: styleScheme.secondaryTextColor,
|
|
transition: `color .3s ${styleScheme.easeInOutCubicBezier}`
|
|
}"
|
|
>
|
|
{{ JSON.stringify(styleScheme, 0, 2) }}</pre
|
|
>
|
|
</template>
|
|
</n-element>
|
|
```
|