Nuxt/examples/with-amp/components/Byline.vue

17 lines
187 B
Vue

<template>
<div class="byline">
By {{ author }}
</div>
</template>
<script>
export default {
props: {
author: {
type: String,
default: ''
}
}
}
</script>