Notice
                              
                          
                        
                          
                          
                            Recent Posts
                            
                        
                          
                          
                            Recent Comments
                            
                        
                          
                          
                            Link
                            
                        
                    | 일 | 월 | 화 | 수 | 목 | 금 | 토 | 
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 | 
| 9 | 10 | 11 | 12 | 13 | 14 | 15 | 
| 16 | 17 | 18 | 19 | 20 | 21 | 22 | 
| 23 | 24 | 25 | 26 | 27 | 28 | 29 | 
| 30 | 
                            Tags
                            
                        
                          
                          - CSS
 - plsql
 - mysql 튜닝
 - Law of Demeter
 - 인증서만료에러
 - 시스템 파악 정리
 - OpenAPI
 - was SQLRecoverableException
 - 명령어공부
 - 나선형 모형
 - Bandit Level 6
 - springboot
 - Bandit Level 5
 - 에자일 모형
 - 시스템 파악
 - avax.net.ssl.SSLHandshakeException:
 - was버그
 - table scan
 - 변수명 짓는법
 - SQLRecoverableException
 - 스크럼기법
 - java.sql.SQLRecoverableException
 - 폭포수 모형
 - 클린코드
 - pl/sql
 - Bandit Level 6 → Level 7
 - 커맨드공부
 - 프로토타입 모형
 - vue
 - 디미터 법칙
 
                            Archives
                            
                        
                          
                          - Today
 
- Total
 
개발햄비
[vue]Vuetify기초 Breakpoints & Visibility정리 (3) 본문
화면 사이즈에 따른 버튼 표시
<div class="home">
<h1>HomePage</h1>
	<v-btn class="hidden-md-and-down">1</v-btn>
	<v-btn class="hidden-md-and-up">2</v-btn>
	<v-btn class="hidden-sm-only">3</v-btn>
</div>
</template>
<script>
export default {};
</script>


https://vuetifyjs.com/en/framework/breakpoints#breakpoints
Breakpoints — Vuetify.js
Access the Vuetify grid system directly in components.
vuetifyjs.com
Material Design Viewport BreakpointsDeviceCodeTypesRange
| phone_iphoneExtra small | xs | small to large handset | < 600px | 
| tabletSmall | sm | small to medium tablet | 600px > < 960px | 
| laptopMedium | md | large tablet to laptop | 960px > < 1264* | 
| desktop_windowsLarge | lg | desktop | 1264 > < 1904px* | 
| tvExtra large | xl | 4k and ultra-wides | > 1904px* | 
'개발 > vue' 카테고리의 다른 글
| [vue]Vuetify 기초 Toolbars 만들기 (4) (0) | 2019.04.01 | 
|---|---|
| [vue]Vuetify기초 Button / Icons 정리 (2) (0) | 2019.04.01 | 
| [vue] Vuetify 기초 color / font 태그 정리 (1) (0) | 2019.03.28 | 
| [vue] 형제 컴포넌트 간 값 전송하기 eventBus (0) | 2019.02.20 | 
| [vue] 자식 컴포넌트에서 부모 컴포넌트로 값 전달 $emit() 사용법 (4) | 2019.02.17 |