xxxxxxxxxx
1
<template>
2
<MDBDatatable :dataset="allRecords" />
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 } from "vue"
4
5
export default {
6
name: "App",
7
components: {
8
MDBDatatable
9
},
10
props: {
11
msg: String
12
},
13
setup(props) {
14
const searchData = ref("");
15
const allRecords = {
16
columns: [
17
{label: "Transaction Number", field: "transaction_number"},
18
{label: "Errors Count", field: "nr_errors"},
19
{label: "Actual Transaction Number", field: "actual_transaction_number"},
20
{label: "Value Date", field: "value_date"},
21
{label: "Type", field: "type"},
22
{label: "Amount", field: "amount"}
23
],
24
rows: [
25
{
26
transaction_number: "$t2",
27
nr_errors: 0,
28
actual_transaction_number: 8719,
29
value_date: "2023-02-01",
30
type: "Principal",
31
amount: "-1043210.1100"
32
},
33
{
34
transaction_number: "$t2",
35
nr_errors: 0,
36
actual_transaction_number: 8720,
37
value_date: "2023-02-01",
38
type: "Coupon",
39
amount: "30416.6700"
40
}]
41
}
42
43
return {
44
searchData,
45
allRecords
46
};
47
},
48
};
49
</script>
Console errors: 0