Nuxt/test/fixtures/modern/pages/index.vue
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

19 lines
235 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>