<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를 누르고 보라.