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

12 lines
134 B
Vue
Raw Normal View History

2018-01-05 11:54:42 +00:00
<template>
<div class="byline">
By {{ author }}
</div>
</template>
<script>
export default {
props: ['author']
}
</script>