Color Palette: #F7FBFC #D6E6F2 #B9D7EA #769FCD - Color Hunt
ColorSpace - Color Palettes Generator and Color Gradient Tool
https://www.figma.com/file/fPQUncYLYdt6XMBCkoRHOo/715잡이?node-id=0%3A1
각 vue 파일에서 <style scoped>
로 작성해서 PR하고 나서 합치기
navbar
메인
예약창
그라데이션 색 만드는 방법
.prettierrc
정말로 에러가 난 것이 아니라 코딩 규칙이 맞지 않는 것. eslint config를 사용한 이후부터는 그 규칙에 맞춰줘야 하기 때문에 prettier code formatter의 옵션을 standard config에 맞게 바꿔주는 것. package.json과 동일한 위치 선상에, .prettierrc 파일을 생성한다.
{
"semi": false, //세미콜론 사용 안 함
"bracketSpacing": true,
"singleQuote": true,
"useTabs": false, // 탭 사용 안 함
"trailingComma": "none",
"printWidth": 80 //한줄에 들어가는 최대 문자열의 길이 80
}
위의 내용을 붙혀넣는다.
.prettierrc 는 code formatter와 연결되어 있다. code formatter에 default로 정해진 coding convention rule을 재정의 해주는 역할.
prettierrc 파일을 읽고 적혀있는 대로 해준다.
package.json 파일을 열고, rules:{”space-before-function-paren”: “off”} 을 작성해준다.