naive-ui/build/loaders/ComponentDemoTemplate.vue
Yugang Cao 7f0dfb108c
chore(site): optimized ts to js build code (#1831)
Co-authored-by: yugang.cao <yugang.cao@tusimple.ai>
2021-12-14 01:48:45 +08:00

27 lines
560 B
Vue

<template>
<component-demo
demo-file-name="<!--DEMO_FILE_NAME-->"
relative-url="<!--URL-->"
title="<!--TITLE_SLOT-->"
ts-code="<!--TS_CODE_SLOT-->"
js-code="<!--JS_CODE_SLOT-->"
language-type="<!--LANGUAGE_TYPE_SLOT-->"
>
<template #title>
<!--TITLE_SLOT-->
</template>
<template #content>
<!--CONTENT_SLOT-->
</template>
<template #demo>
<div class="demo-card__view">
<!--DEMO_SLOT-->
</div>
</template>
</component-demo>
</template>
<!--SCRIPT_SLOT-->
<!--STYLE_SLOT-->