xxxxxxxxxx
1
<template>
2
<MDBInput class="mb-4" v-model="search3" />
3
<MDBDatatable :search="search3" :dataset="dataset7" />
4
</template>
xxxxxxxxxx
1
<style>
2
#app {
3
font-family: Roboto, Helvetica, Arial, sans-serif;
4
}
5
6
.customTD {
7
background: green
8
}
9
10
.datatable-body tr:nth-child(3) {
11
background: lightblue
12
}
13
14
.link {
15
color: blue
16
}
17
</style>
xxxxxxxxxx
1
<script>
2
import { MDBDatatable, MDBInput } from "mdb-vue-ui-kit";
3
import { ref } from "vue";
4
5
export default {
6
components: {
7
MDBDatatable, MDBInput
8
},
9
setup() {
10
const search3 = ref("");
11
12
const dataset7 = {
13
columns: ["Name", "Position", "Office", "Age", "Start date", "Salary"],
14
rows: [
15
[
16
"Tiger Nixon",
17
"<span class='customTD'>System Architect</span>",
18
"Edinburgh",
19
"61",
20
"2011/04/25",
21
"$320,800"
22
],
23
[
24
"Garrett Winters",
25
"<a class='link' href='#'>Accountant</a>",
26
"Tokyo",
27
"63",
28
"2011/07/25",
29
"$170,750"
30
],
31
[
32
"Ashton Cox",
33
"Junior Technical Author",
34
"San Francisco",
35
"66",
36
"2009/01/12",
37
"$86,000"
38
],
39
[
40
"Cedric Kelly",
41
"Senior Javascript Developer",
42
"Edinburgh",
43
"22",
44
"2012/03/29",
45
"$433,060"
46
],
47
[
48
"Airi Satou",
49
"Accountant",
50
"Tokyo",
51
"33",
52
"2008/11/28",
53
"$162,700"
54
],
55
[
56
"Brielle Williamson",
57
"Integration Specialist",
58
"New York",
59
"61",
60
"2012/12/02",
61
"$372,000"
62
],
63
[
64
"Herrod Chandler",
65
"Sales Assistant",
66
"San Francisco",
67
"59",
68
"2012/08/06",
69
"$137,500"
70
],
71
[
72
"Rhona Davidson",
73
"Integration Specialist",
74
"Tokyo",
75
"55",
76
"2010/10/14",
77
"$327,900"
78
],
79
[
80
"Colleen Hurst",
81
"Javascript Developer",
82
"San Francisco",
83
"39",
84
"2009/09/15",
85
"$205,500"
86
],
87
[
88
"Sonya Frost",
89
"Software Engineer",
90
"Edinburgh",
91
"23",
92
"2008/12/13",
93
"$103,600"
94
],
95
[
96
"Jena Gaines",
97
"Office Manager",
98
"London",
99
"30",
100
"2008/12/19",
101
"$90,560"
102
],
103
[
104
"Quinn Flynn",
105
"Support Lead",
106
"Edinburgh",
107
"22",
108
"2013/03/03",
109
"$342,000"
110
],
111
[
112
"Charde Marshall",
113
"Regional Director",
114
"San Francisco",
115
"36",
116
"2008/10/16",
117
"$470,600"
118
],
119
[
120
"Haley Kennedy",
121
"Senior Marketing Designer",
122
"London",
123
"43",
124
"2012/12/18",
125
"$313,500"
126
]
127
]
128
};
129
return {
130
dataset7, search3
131
};
132
}
133
};
134
</script>
Console errors: 0