mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
bed0714fad
* feat: modern build * refactor: use single module import for lodash * refactor: add credit comment for modern plugin * feat: ssr modern build * fix: not null check for request * fix: not null check for request.headers * feat: add modern argument on build command * refactor: simpilfy filenames for modern * refactor: use packages/webpack src instead of dist in test * test: add feature test for modern build
19 lines
234 B
Vue
19 lines
234 B
Vue
<template>
|
|
<h1>Index page</h1>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
test() {
|
|
const test = {
|
|
build: true,
|
|
test: true,
|
|
arrow: () => { return 'build test' }
|
|
}
|
|
return {
|
|
test
|
|
}
|
|
}
|
|
}
|
|
</script>
|