mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 17:43:59 +00:00
af76e07b56
[release]
11 lines
127 B
JavaScript
11 lines
127 B
JavaScript
export default {
|
|
render(h) {
|
|
return h('div',
|
|
[
|
|
h('h1', 'JS Layout'),
|
|
h('nuxt')
|
|
]
|
|
)
|
|
}
|
|
}
|