├── public
│ ├── favicon.ico
│ └── index.html
├── src
│ ├── assets //정적파일(image, css, scss)
│ │ ├── images
│ │ ├── scss
│ ├── conponents //컴포넌트들
│ ├── router //라우팅 코드
│ ├── store //전역상태관리
│ ├── types // type, interface
│ ├── utills //재사용하는 함수들
│ ├── views //실제 라우팅되는 view컴포넌트
│ ├── App.vue //루트컴포넌트
│ ├── main.ts //메인 파일(store, router.. 세팅)
└── run.sh
_mixin.scss
_variable.scss----good----
components/
|- StudentDashboardSettings.vue
|- UserProfileOptions.vue
라우터
store
types
utills
views
변수(ref, reactive, let, const)
함수(function)
배열(Array)
객체(Object)
type, interface
class
boolean
상수(constant)
npm install --save-dev stylelint stylelint-config-standard-scss stylelint-config-recommended-vue stylelint-config-prettier-scss