17 lines
224 B
Vue
17 lines
224 B
Vue
<template lang="html">
|
|
<div class="name text-h5 mb-2">
|
|
{{ value }}
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="js">
|
|
export default {
|
|
props: {
|
|
value: {
|
|
type: String,
|
|
default: undefined,
|
|
},
|
|
}
|
|
}
|
|
</script>
|