vuetify-demo/src/components/base/Subheading.vue

35 lines
590 B
Vue
Raw Normal View History

2020-03-24 23:26:17 +08:00
<template>
<div class="display-2 font-weight-light col col-12 text-left text--primary pa-0 mb-8">
<h5 class="font-weight-light">
{{ subheading }}
<template v-if="text">
<span
class="subtitle-1"
v-text="text"
/>
</template>
</h5>
<div class="pt-2">
<slot />
</div>
</div>
</template>
<script>
export default {
name: 'Subheading',
props: {
subheading: {
type: String,
default: '',
},
text: {
type: String,
default: '',
},
},
}
</script>