-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathvue-events.mjs
42 lines (41 loc) · 1015 Bytes
/
vue-events.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
38
39
40
41
42
import faker from 'https://cdn.skypack.dev/faker'
import { Grid } from '../../dist/main.esm.js'
import TestComponent from '../test-component.mjs'
export default {
name: 'VueEvents',
components: {
Grid
},
data() {
return {
columns: [
{
name: 'Name',
formatter: cell => {
return this.$gridjs.helper({
components: { TestComponent },
template: `<test-component :content="content" @sayHello="hello"></test-component>`,
data() {
return {
content: `🥳 ${cell}`
}
},
methods: {
hello() {
console.log('Hello!')
}
}
})
}
},
'Email'
],
rows: Array(5)
.fill()
.map(() => [faker.name.findName(), faker.internet.email()])
}
},
template: `
<div><grid :columns="columns" :rows="rows"></grid></div>
`
}