Nuxt/examples/with-amp/components/Byline.vue
Jee Hyuk Won (Tony) 16898f8cfa fix: ByLine component props error fixed and other some errors fixed in with-amp example (#3871)
* ByLine component props error fixed and other some errors fixed

* linting problem fixed

* export nuxt config by esmodule

* upgrade dependency
2018-09-18 17:34:01 +02:00

17 lines
187 B
Vue

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