chore(cli): demo-block add demoName class

This commit is contained in:
chenjiahan 2020-10-22 16:18:09 +08:00
parent b5cd336bb8
commit 8b8ddd6522

View File

@ -1,5 +1,5 @@
<template>
<div class="van-doc-demo-block">
<div class="van-doc-demo-block" :class="demoName">
<h2 v-if="title" class="van-doc-demo-block__title">{{ title }}</h2>
<div v-if="card" class="van-doc-demo-block__card">
<slot />
@ -9,6 +9,8 @@
</template>
<script>
import { decamelize } from '../../common';
export default {
name: 'demo-block',
@ -16,6 +18,17 @@ export default {
card: Boolean,
title: String,
},
computed: {
demoName() {
const { meta } = this.$route || {};
if (meta && meta.name) {
return `demo-${decamelize(meta.name)}`;
}
return '';
},
},
};
</script>