1
0
mirror of https://github.com/nuxt/nuxt.git synced 2025-02-25 10:08:29 +00:00
Nuxt/examples/with-amp/components/Byline.vue
2018-01-05 12:54:42 +01:00

12 lines
134 B
Vue

<template>
<div class="byline">
By {{ author }}
</div>
</template>
<script>
export default {
props: ['author']
}
</script>