add class ใน vue js

ใน Vue.js, คุณสามารถเพิ่มคลาส CSS ลงใน element โดยใช้ directive v-bind:class หรือย่อมาเรียกว่า :class หรือ v-bind:class directive ช่วยให้คุณสามารถเปลี่ยนคลาสของ element ตามเงื่อนไขหรือตามค่าที่คุณต้องการได้ง่ายๆ ตัวอย่างเช่น:

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
31
32
<template>
<div>
<p :class="{ 'active': isActive, 'text-danger': isError }">This is a paragraph.</p>
<button @click="toggleClass">Toggle Class</button>
</div>
</template>

<script>
export default {
data() {
return {
isActive: false,
isError: false
};
},
methods: {
toggleClass() {
this.isActive = !this.isActive;
this.isError = !this.isError;
}
}
};
</script>

<style>
.active {
font-weight: bold;
}
.text-danger {
color: red;
}
</style>

ในตัวอย่างนี้เราใช้ :class directive เพื่อกำหนดคลาสของ element <p> โดยขึ้นอยู่กับค่าของ isActive และ isError ถ้า isActive เป็น true คลาส ‘active’ จะถูกเพิ่มลงไป และถ้า isError เป็น true คลาส ‘text-danger’ จะถูกเพิ่มลงไป เมื่อคลิกที่ปุ่ม “Toggle Class” ค่าของ isActive และ isError จะถูกสลับไปมา ซึ่งจะทำให้คลาสบน element <p> ถูกเปลี่ยนแปลงตามค่าใหม่.