-
Vue 프로젝트 Bootstrap 구성프로젝트/영화 검색 (Vue) 2021. 7. 28. 04:31
구성 순서
1. npm i bootstrap@next (부트스트랩 설치)
2. src/scss/main.scss 파일 생성
/* main.scss */ @import "../../node_modules/bootstrap/scss/bootstrap"; /* .scss 생략 */
3. App.vue 파일에 main.scss 연결
/* App.vue */ <style lang="scss"> @import "~/scss/main" </style>
4. main.scss 커스터 마이징
/* main.scss */ // Default variable overrides $primary: #FDC000; // Required @import "../../node_modules/bootstrap/scss/functions"; @import "../../node_modules/bootstrap/scss/variables"; @import "../../node_modules/bootstrap/scss/mixins"; @import "../../node_modules/bootstrap/scss/bootstrap";
'프로젝트 > 영화 검색 (Vue)' 카테고리의 다른 글
Vue 프로젝트 Search - 필터 (0) 2021.08.01 Vue 프로젝트 Headline (0) 2021.07.31 Vue 프로젝트 Header - Logo 및 Google Fonts (0) 2021.07.31 Vue 프로젝트 Header - Nav (0) 2021.07.29 Vue 프로젝트 Router 구성 (0) 2021.07.24