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

14 lines
326 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
2019-12-23 15:01:38 +08:00
<n-element as="div" class="myel">
<template v-slot="{ styleScheme }">
<pre
:style="{
color: styleScheme.textSecondaryColor,
transition: `color .3s ${styleScheme.cubicBezierEaseInOut}`
}"
>{{ JSON.stringify(styleScheme, 0, 2) }}</pre>
</template>
</n-element>
2019-09-17 19:24:39 +08:00
```