mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-07 09:22:27 +00:00
11 lines
128 B
JavaScript
11 lines
128 B
JavaScript
export default {
|
|
render (h) {
|
|
return h('div',
|
|
[
|
|
h('h1', 'JS Layout'),
|
|
h('nuxt')
|
|
]
|
|
)
|
|
}
|
|
}
|