-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathcss-style.mjs
37 lines (36 loc) · 892 Bytes
/
css-style.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import { Grid } from '../../dist/main.esm.js'
export default {
name: 'CssStyle',
components: {
Grid
},
data() {
return {
columns: ['Name', 'Email', 'Phone Number'],
search: true,
rows: [
['John', '[email protected]', '(353) 01 222 3333'],
['Mark', '[email protected]', '(01) 22 888 4444'],
['Eoin', '[email protected]', '(05) 10 878 5554'],
['Nisen', '[email protected]', '313 333 1923']
],
styles: {
table: {
border: '8px solid #ccc'
},
th: {
'background-color': 'rgba(81, 212, 0, 0.5)',
color: '#000',
'border-bottom': '3px solid #ccc',
'text-align': 'center'
},
td: {
'text-align': 'center'
}
}
}
},
template: `
<div><grid :columns="columns" :rows="rows" :styles="styles"></grid></div>
`
}