1
0
mirror of https://github.com/nuxt/nuxt.git synced 2025-02-24 17:39:06 +00:00
Nuxt/examples/with-amp/components/Byline.vue

15 lines
164 B
Vue

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