xxxxxxxxxx
1
<template>
2
<MDBDatatable :dataset="dataset5" selectable multi @selected-rows="selected" @render="render" />
3
</template>
xxxxxxxxxx
1
<style>
2
#app {
3
font-family: Roboto, Helvetica, Arial, sans-serif;
4
}
5
</style>
xxxxxxxxxx
1
<script>
2
import { MDBDatatable } from "mdb-vue-ui-kit";
3
import { ref, onMounted } from "vue"
4
export default {
5
components: {
6
MDBDatatable
7
},
8
9
setup() {
10
const dataset5 = ref({
11
columns: [
12
{ label: "Name", field: "name" },
13
{ label: "Position", field: "position", sort: false },
14
{ label: "Office", field: "office", sort: false },
15
{ label: "Age", field: "age", sort: false },
16
{ label: "Start date", field: "date" },
17
{ label: "Salary", field: "salary", sort: false }
18
],
19
rows: [
20
{
21
name: "Tiger Nixon",
22
position: "System Architect",
23
office: "Edinburgh",
24
age: 61,
25
date: "2011/04/25",
26
salary: "$320,800",
27
},
28
{
29
name: "Garrett Winters",
30
position: "Accountant",
31
office: "Tokyo",
32
age: 63,
33
date: "2011/07/25",
34
salary: "$170,750"
35
},
36
{
37
name: "Ashton Cox",
38
position: "Junior Technical Author",
39
office: "San Francisco",
40
age: 66,
41
date: "2009/01/12",
42
salary: "$86,000"
43
},
44
{
45
name: "Cedric Kelly",
46
position: "Senior Javascript Developer",
47
office: "Edinburgh",
48
age: 22,
49
date: "2012/03/29",
50
salary: "$433,060"
51
},
52
{
53
name: "Airi Satou",
54
position: "Accountant",
55
office: "Tokyo",
56
age: 33,
57
date: "2008/11/28",
58
salary: "$162,700"
59
},
60
{
61
name: "Brielle Williamson",
62
position: "Integration Specialist",
63
office: "New York",
64
age: 61,
65
date: "2012/12/02",
66
salary: "$372,000"
67
},
68
{
69
name: "Herrod Chandler",
70
position: "Sales Assistant",
71
office: "San Francisco",
72
age: 59,
73
date: "2012/08/06",
74
salary: "$137,500"
75
},
76
{
77
name: "Rhona Davidson",
78
position: "Integration Specialist",
79
office: "Tokyo",
80
age: 55,
81
date: "2010/10/14",
82
salary: "$327,900"
83
},
84
{
85
name: "Colleen Hurst",
86
position: "Javascript Developer",
87
office: "San Francisco",
88
age: 39,
89
date: "2009/09/15",
90
salary: "$205,500"
91
}
92
]
93
})
94
95
const checkboxesUpdated = ref(false);
96
const render = () => {
97
const checkboxes = document.querySelectorAll(".form-check-input");
98
if (!checkboxesUpdated.value) {
99
checkboxesUpdated.value = true;
100
checkboxes.forEach((item,id)=>{
101
id % 2 && item.dispatchEvent(new Event("change"))
102
})
103
// checkboxes[1].dispatchEvent(new Event("change"));
104
}
105
};
106
107
const selected = (e) => {
108
console.log(e)
109
}
110
111
112
return {
113
dataset5, render, selected
114
};
115
}
116
};
117
</script>
Console errors: 0