naive-ui/demo/loaders/test/basic.test.md
2020-02-05 13:13:48 +08:00

326 B

Style Scheme

<n-element as="div" class="myel">
  <template v-slot="{ styleScheme }">
    <pre
      :style="{
        color: styleScheme.secondaryTextColor,
        transition: `color .3s ${styleScheme.easeInOutCubicBezier}`
      }"
    >{{ JSON.stringify(styleScheme, 0, 2) }}</pre>
  </template>
</n-element>