//onClick
@click="펑션명"
//조건문
v-if
//마운트된 이후로 데이터가 변하지 않음
v-once
//원시 html
v-html="msg"
//v-bind
msg : 'active'
v-bind:id="" ->> :id
v-bind:class="" ->> :class
<template>
<h1
:[attr]="'active'"
@[event]="add">
{{ msg }}
</h1>
</template>
<script>
export default {
data(){
return{
msg : 'active',
attr: 'class',
event: 'click'
}
},
methods:{
add(){
this.msg += '!'
}
}
}
</script>
<style>
.active{
color:violet;
font-size:100px;
}
</style>
반응형
'Frontend > Vue 2' 카테고리의 다른 글
vue3 computed - getter setter (0) | 2021.10.18 |
---|---|
vue3 computed 캐싱 (0) | 2021.10.18 |
vue3 computed (0) | 2021.10.18 |
[유튜브] 한시간만에 끝내는 Vue.js 입문 (0) | 2021.10.13 |
[error] VSCode : 이 시스템에서 스크립트를 실행할 수 없으므로 (0) | 2021.10.13 |