naive-ui/build/loaders/test/basic.test.md

14 lines
327 B
Markdown
Raw Normal View History

2019-12-23 15:01:38 +08:00
# Style Scheme
2019-09-17 19:24:39 +08:00
```html
2020-11-03 18:56:13 +08:00
<n-element tag="div" class="myel">
2019-12-23 15:01:38 +08:00
<template v-slot="{ styleScheme }">
<pre
:style="{
2020-02-05 13:13:48 +08:00
color: styleScheme.secondaryTextColor,
transition: `color .3s ${styleScheme.easeInOutCubicBezier}`
2019-12-23 15:01:38 +08:00
}"
>{{ JSON.stringify(styleScheme, 0, 2) }}</pre>
</template>
</n-element>
2019-09-17 19:24:39 +08:00
```