v-bind
를 사용하여 처리할 수 있음v-bind
를 사용할 때 특별히 향상된 기능을 제공v-bind:class
에 객체를 전달할 수 있음v-bind:class
에 전달하여 클래스 목록을 지정할 수 있음<div v-bind:class="{ active: isActive }"></div>
v-bind:class
디렉티브는 일반 class 속성과 공존할 수 있다.<div
class="static"
v-bind:class="{ active: isActive, 'text-danger': hasError }"
></div>
data: {
isActive: true,
hasError: false
}
<!-- output -->
<div class="static active"></div>
<div v-bind:class="classObject"></div>
data: {
classObject: {
active: true,
'text-danger': false
}
}
<div v-bind:class="classObject"></div>
data: {
isActive: true,
error: null
},
computed: {
classObject: function () {
return {
active: this.isActive && !this.error,
'text-danger': this.error && this.error.type === 'fatal'
}
}
}
배열을 전달하여 class을 지정할 수 있다.
<div v-bind:class="[activeClass, errorClass]"></div>
data: {
activeClass: 'active',
errorClass: 'text-danger'
}
<!-- output -->
<div class="active text-danger"></div>
삼항연산자를 사용하여 class를 적용 할 수 있다.
<div v-bind:class="[isActive ? activeClass : '', errorClass]"></div>
<!-- ↑ 같은 거 ↓ -->
<div v-bind:class="[{ active: isActive }, errorClass]"></div>
Vue.component('my-component', {
template: '<p class="foo bar">Hi</p>'
})
<my-component class="baz boo"></my-component>
<my-component v-bind:class="{ active: isActive }"></my-component>
<!-- output -->
<p class="foo bar baz boo">Hi</p>
<p class="foo bar active">Hi</p>
v-bind:style
에 객체를 전달할 수 있음v-bind:style
에 전달하여 클래스 목록을 지정할 수 있음v-bind:style
객체 구문은 거의 CSS처럼 보이지만 JavaScript 객체이다.<div v-bind:style="{ color: activeColor, fontSize: fontSize + 'px' }"></div>
<div v-bind:style="styleObject"></div>
data: {
activeColor: 'red',
fontSize: 30,
styleObject: {
color: 'red',
fontSize: '13px'
}
}
v-bind:style
에 대한 배열 구문은 같은 스타일의 엘리먼트에 여러 개 스타일 객체를 사용할 수 있게 한다.<div v-bind:style="[baseStyles, overridingStyles]"></div>
display:flex
를 렌더링한다.<div v-bind:style="{ display: ['-webkit-box', '-ms-flexbox', 'flex'] }"></div>