xxxxxxxxxx
1
<template>
2
<MDBContainer>
3
<div
4
class="d-flex justify-content-center align-items-center"
5
style="height: 100vh"
6
>
7
<div class="text-center">
8
<img
9
class="mb-4"
10
src="https://mdbootstrap.com/img/logo/mdb-earlyaccess.png"
11
style="width: 400px; height: 190px"
12
/>
13
<h5 class="mb-3">{{ msg }}</h5>
14
<p>
15
This Early Access grants you access to a UI Kit that is still under
16
development.
17
</p>
18
<p>
19
The schedule for all upcoming features can be found in
20
<a href="https://mdbootstrap.com/docs/b5/roadmap/">release roadmap</a
21
>.
22
</p>
23
<p class="mb-3">MDB Team</p>
24
<a
25
class="btn btn-primary btn-lg"
26
href="https://mdbootstrap.com/docs/b5/vue/pro/installation/"
27
target="_blank"
28
role="button"
29
>Start using MDB</a
30
>
31
<MDBDatatable :dataset="dataset5" selectable multi />
32
</div>
33
</div>
34
</MDBContainer>
35
</template>
xxxxxxxxxx
1
<style>
2
#app {
3
font-family: Roboto, Helvetica, Arial, sans-serif;
4
}
5
</style>
xxxxxxxxxx
1
<script>
2
import { MDBContainer, MDBDatatable } from "mdb-vue-ui-kit";
3
4
export default {
5
name: "App",
6
components: {
7
MDBContainer,
8
MDBDatatable
9
},
10
props: {
11
msg: String
12
},
13
setup() {
14
const dataset5 = {
15
columns: ["Name", "Position", "Office", "Age", "Start date", "Salary"],
16
rows: [
17
[
18
"Tiger Nixon",
19
"System Architect",
20
"Edinburgh",
21
"61",
22
"2011/04/25",
23
"$320,800"
24
],
25
[
26
"Garrett Winters",
27
"Accountant",
28
"Tokyo",
29
"63",
30
"2011/07/25",
31
"$170,750"
32
],
33
[
34
"Ashton Cox",
35
"Junior Technical Author",
36
"San Francisco",
37
"66",
38
"2009/01/12",
39
"$86,000"
40
],
41
[
42
"Cedric Kelly",
43
"Senior Javascript Developer",
44
"Edinburgh",
45
"22",
46
"2012/03/29",
47
"$433,060"
48
],
49
[
50
"Airi Satou",
51
"Accountant",
52
"Tokyo",
53
"33",
54
"2008/11/28",
55
"$162,700"
56
],
57
[
58
"Brielle Williamson",
59
"Integration Specialist",
60
"New York",
61
"61",
62
"2012/12/02",
63
"$372,000"
64
],
65
[
66
"Herrod Chandler",
67
"Sales Assistant",
68
"San Francisco",
69
"59",
70
"2012/08/06",
71
"$137,500"
72
],
73
[
74
"Rhona Davidson",
75
"Integration Specialist",
76
"Tokyo",
77
"55",
78
"2010/10/14",
79
"$327,900"
80
],
81
[
82
"Colleen Hurst",
83
"Javascript Developer",
84
"San Francisco",
85
"39",
86
"2009/09/15",
87
"$205,500"
88
],
89
[
90
"Sonya Frost",
91
"Software Engineer",
92
"Edinburgh",
93
"23",
94
"2008/12/13",
95
"$103,600"
96
],
97
[
98
"Jena Gaines",
99
"Office Manager",
100
"London",
101
"30",
102
"2008/12/19",
103
"$90,560"
104
],
105
[
106
"Quinn Flynn",
107
"Support Lead",
108
"Edinburgh",
109
"22",
110
"2013/03/03",
111
"$342,000"
112
],
113
[
114
"Charde Marshall",
115
"Regional Director",
116
"San Francisco",
117
"36",
118
"2008/10/16",
119
"$470,600"
120
],
121
[
122
"Haley Kennedy",
123
"Senior Marketing Designer",
124
"London",
125
"43",
126
"2012/12/18",
127
"$313,500"
128
]
129
]
130
};
131
return {
132
dataset5
133
};
134
}
135
};
136
</script>
Console errors: 0