2019-09-17 19:24:39 +08:00
|
|
|
<template>
|
2019-09-23 15:04:57 +08:00
|
|
|
<component-demo>
|
2019-09-17 19:24:39 +08:00
|
|
|
<template v-slot:title>
|
|
|
|
<!--TITLE_SLOT-->
|
|
|
|
</template>
|
|
|
|
<template v-slot:content>
|
|
|
|
<!--CONTENT_SLOT-->
|
|
|
|
</template>
|
|
|
|
<template v-slot:demo>
|
2020-01-05 15:20:35 +08:00
|
|
|
<div
|
|
|
|
class="demo-card__view"
|
|
|
|
>
|
2019-09-17 19:24:39 +08:00
|
|
|
<!--DEMO_SLOT-->
|
2020-01-05 15:20:35 +08:00
|
|
|
</div>
|
2019-09-17 19:24:39 +08:00
|
|
|
</template>
|
2019-09-25 12:19:57 +08:00
|
|
|
<template
|
|
|
|
v-slot:code
|
|
|
|
>
|
2019-09-17 19:24:39 +08:00
|
|
|
<!--CODE_SLOT-->
|
|
|
|
</template>
|
2019-09-23 15:04:57 +08:00
|
|
|
</component-demo>
|
2019-09-17 19:24:39 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
/** SCRIPT_SLOT */
|
|
|
|
</script>
|
|
|
|
|
2019-12-22 23:19:08 +08:00
|
|
|
<style scoped lang="scss">
|
2019-12-28 22:44:05 +08:00
|
|
|
.demo-card__view, .naive-ui-doc {
|
2019-12-22 23:19:08 +08:00
|
|
|
/**STYLE_SLOT*/
|
|
|
|
}
|
2019-09-17 19:24:39 +08:00
|
|
|
</style>
|