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

17 lines
329 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">
2020-12-24 00:29:04 +08:00
<template #="{ styleScheme }">
2019-12-23 15:01:38 +08:00
<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
}"
2020-12-24 00:29:04 +08:00
>
{{ JSON.stringify(styleScheme, 0, 2) }}</pre
>
2019-12-23 15:01:38 +08:00
</template>
</n-element>
2020-12-24 00:29:04 +08:00
```