css non scoped 는 분리가능
Nuxt Vue export Order
Vue 컴포넌트 스펙
vue 파일은 HTML과 같은 문법을 사용하여 Vue 컴포넌트를 작성합니다. 각각의 *.vue 파일은 3가지 유형의 최상위 language block인 , 와 로 이루어집니다. vue-loader 는 파일을 파싱하고 각 language block을 추출하며 필요한 경우 다른 로더를 통해 파이프 처리한 후 마지막으로 Module.exports가 Vue.js 컴포넌트 엘리먼트 옵션 객체인 CommonJS 모듈로 다시 조합합니다.
https://vue-loader-v14.vuejs.org/kr/start/spec.html
github.com
https://github.com/vuejs/eslint-plugin-vue/blob/master/docs/rules/order-in-components.md
nuxt component spec
Nuxt Components
Nuxt.js comes with a few important components included out of the box, which will be helpful when building your application. The components are globally available, which means that you don't need to import them in order to use them. In the following paragraphs, each of the included components is explained.
https://nuxtjs.org/docs/2.x/features/nuxt-components

