mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-03 04:21:34 +08:00
37 lines
645 B
Vue
37 lines
645 B
Vue
<template>
|
|
<component-demo
|
|
demo-file-name="<!--DEMO_FILE_NAME-->"
|
|
relative-url="<!--URL-->"
|
|
title="<!--TITLE_SLOT-->"
|
|
>
|
|
<template v-slot:title>
|
|
<!--TITLE_SLOT-->
|
|
</template>
|
|
<template v-slot:content>
|
|
<!--CONTENT_SLOT-->
|
|
</template>
|
|
<template v-slot:demo>
|
|
<div
|
|
class="demo-card__view"
|
|
>
|
|
<!--DEMO_SLOT-->
|
|
</div>
|
|
</template>
|
|
<template
|
|
v-slot:code
|
|
>
|
|
<!--CODE_SLOT-->
|
|
</template>
|
|
</component-demo>
|
|
</template>
|
|
|
|
<script>
|
|
/** SCRIPT_SLOT */
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.demo-card__view, .naive-ui-doc {
|
|
/**STYLE_SLOT*/
|
|
}
|
|
</style>
|