CSS
-
-
[Vue.js]Vue예제 클릭한 횟수를 표시하는 버튼 +cssLanguages/Vue.js 2021. 3. 11. 15:22
클릭한 횟수를 표시하는 버튼 만들기 클릭하면 카운트가 올라가고 내려갑니다. {{ count }}회 카운터 업 카운터 다운 script를 위로 올려도 가능하다 클릭하면 카운트가 올라가고 내려갑니다. {{ count }}회 카운터 업 카운터 다운 실행결과 css 결합 html{ width : 80%; margin-right: auto; margin-left: auto; font-family: sans-serif; font-size: 16px; ilne-height: 1.5; } input,button,select,optgroup,textarea{ font-family: inherit; font-size: inherit; line-height: inherit; } button{ cursor: pointer; ..