14 lines
158 B
Vue
14 lines
158 B
Vue
<template lang="html">
|
|
<div class="name headline mb-2">
|
|
{{value}}
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
value: String,
|
|
}
|
|
}
|
|
</script>
|