Reformat codes

This commit is contained in:
Peng-YM
2021-04-15 17:00:07 +08:00
parent e764f33956
commit 69e4ddca60
33 changed files with 796 additions and 791 deletions
+14 -14
View File
@@ -4,31 +4,31 @@
{{ subheading }}
<template v-if="text">
<span
class="subtitle-1"
v-text="text"
class="subtitle-1"
v-text="text"
/>
</template>
</h5>
<div class="pt-2">
<slot />
<slot/>
</div>
</div>
</template>
<script>
export default {
name: 'Subheading',
export default {
name: 'Subheading',
props: {
subheading: {
type: String,
default: ''
},
text: {
type: String,
default: ''
}
props: {
subheading: {
type: String,
default: ''
},
text: {
type: String,
default: ''
}
}
}
</script>