Nuxt/examples/jsx/pages/about.js
pooya parsa e7cc2757c3 refactor: update eslint-config to 1.x
Co-authored-by: Alexander Lichter <manniL@gmx.net>
2019-07-10 15:15:49 +04:30

22 lines
418 B
JavaScript

import Test from '~/components/test.vue'
export default {
head: {
title: 'About Page',
meta: [
{ hid: 'description', name: 'description', content: 'About page description' }
]
},
components: {
Test
},
render () {
return <div class='container'>
<h1>About page</h1>
<test data='I am test component' />
<p><NuxtLink to='/'>Home page</NuxtLink></p>
</div>
}
}