-
Vue 프로젝트 Headline프로젝트/영화 검색 (Vue) 2021. 7. 31. 02:34
Vue 프로젝트 Headline
Vue 프로젝트 Headline 순서
1. /src/components/Headline.vue 생성
<template> <div class="container"> <h1> <span>OMDb API</span><br /> THE OPEN<br /> MOVIE DATABASE </h1> <p> The OMDb API is a RESTful web service to obtain movie information, all content and images on the site are contributed and maintained by our users.<br /> If you find this service useful, please consider making a one-time donation or become a patron. </p> </div> </template>
<style lang="scss" scoped> @import "~/scss/main"; .container { padding-top: 40px; } h1 { line-height: 1; font-family: "Oswald", sans-serif; font-size: 80px; span { color: $primary; } } p { margin: 30px 0; color: $gray-600; } </style>
2. /src/routes/Home.vue 연결
<template> <Headline /> </template>
<script> import Headline from '~/components/Headline' export default { components: { Headline } } </script>
결과
참고
https://getbootstrap.com/docs/5.0/layout/containers/
Containers
Containers are a fundamental building block of Bootstrap that contain, pad, and align your content within a given device or viewport.
getbootstrap.com
'프로젝트 > 영화 검색 (Vue)' 카테고리의 다른 글
Vue 프로젝트 Search - 버튼 (0) 2021.08.01 Vue 프로젝트 Search - 필터 (0) 2021.08.01 Vue 프로젝트 Header - Logo 및 Google Fonts (0) 2021.07.31 Vue 프로젝트 Header - Nav (0) 2021.07.29 Vue 프로젝트 Bootstrap 구성 (0) 2021.07.28