* Spring & Springboot 차이 딱 생각 든 답변은 Spring boot는 Spring에 포함된 개념이다. 스프링부트는 spring boot starter를 통해 pre-packaged를 제공하고, 이는 스프링의 많은 설정 과정을 건너뛰게 해준다. (Spring Boot는 웹 컨테이너를 내장하고있고 최소한의 설정으로 쉽게 웹 어플리케이션을 만들 수 있다.)
쉽게 만든다. 단독적인. 상용화 수준의. Based on Spring. 1. dependency: 짧아졌다. 버전관리도 권장 버전으로 자동 설정. 2. configuration: application.properties(application.yml) 3. embedded server: 내장된 tomcat, jetty, undertow. jar 파일로 간단한 배포! (서버 구동시간이 짧다.. ) -> 개발자들이 개발에만 더 집중할 수 있도록
<v-flex xs12 sm6 offset-sm3>
<v-card>
//이미지 넣는거 같음.
<v-card-media
src="/static/doc-images/cards/sunshine.jpg"
height="200px"
>
</v-card-media>
<v-card-title primary-title>
<div>
<div class="headline">Top western road trips</div>
<span class="grey--text">1,000 miles of wonder</span>
</div>
</v-card-title>
<v-card-actions>
<v-btn flat>Share</v-btn>
<v-btn flat color="purple">Explore</v-btn>
<v-spacer></v-spacer>
<v-btn icon @click.native="show = !show">
<v-icon>{{ show ? 'keyboard_arrow_down' : 'keyboard_arrow_up' }}</v-icon>
</v-btn>
</v-card-actions>
<v-slide-y-transition>
<v-card-text v-show="show">
I'm a thing. But, like most politicians, he promised more than he could deliver. You won't have time for sleeping, soldier, not with all the bed making you'll be doing. Then we'll go with that data file! Hey, you add a one and two zeros to that or we walk! You're going to do his laundry? I've got to find a way to escape.
</v-card-text>
</v-slide-y-transition>
</v-card>
</v-flex>
v-card-action는 btn등 action이 동작하는 곳인거 같다.
v-card-text=> 카드에서 텍스트를 넣는 곳인거 같다.
v-card-primary-title은 뭘까?
모르겠으면 직접 치고 CSS를 보면 된다 . 인성이 행님처럼 ..!!! F12를 누르고 보라.