1
0
mirror of https://github.com/nuxt/nuxt.git synced 2025-02-25 10:08:29 +00:00
Nuxt/test/fixtures/basic/pages/custom.js

7 lines
92 B
JavaScript
Raw Normal View History

export default {
layout: 'custom',
render (h) {
return h('h2', 'custom page')
}
}