Newer
Older
<template>
<div

raghosh
committed
class="flex flex-wrap justify-center"
<div class="w-5/6">
<div class="p-4">
<h2>Condensates</h2>
</div>
<data-table
id="condensateTable"
category="condensate"
/>
</div>
</template>
<script>
import DataTable from '@/components/Datatable/CondensateDataTable';
const _ = require('lodash')
export default {
name: 'Condensates',
components: {
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
},
props: {
msg: String
},
data() {
return {
isDev: process.env.NODE_ENV === 'development'
}
},
computed: {
},
methods: {
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style>
@import url('~@/assets/bootstrap.css');
@import url('~@/assets/datatable.css');
.main {
margin: 1.5rem;
}
h3 {
margin: 40px 0 0;
}
a {
color: #42b983;
}
ul.a {
list-style-type: disc;
list-style-position: inside;
}
input[type="radio"] {
margin: 2px;
}
.radio-label {
margin-left: 0px;
margin-right: 5px;
}
</style>