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

15 lines
164 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 {
author: {
type: String,
default: ''
}
2018-01-05 11:54:42 +00:00
}
</script>