export default `<template>
<div>
<d2-crud
:columns="columns"
:data="data"
@cell-data-change="cellDataChange"/>
</div>
</template>
<script>
export default {
data () {
return {
columns: [
{
title: '日期',
key: 'date',
component: {
name: 'el-date-picker',
size: 'small'
}
},
title: '姓名',
key: 'name',
name: 'el-select',
options: [
value: '王小虎',
label: '王小虎'
value: '王中虎',
label: '王中虎'
value: '王老虎',
label: '王老虎'
],
title: '地址',
key: 'address',
name: 'el-input',
data: [
date: '2016-05-02',
name: '王小虎',
address: '上海市普陀区金沙江路 1518 弄'
date: '2016-05-04',
address: '上海市普陀区金沙江路 1517 弄'
date: '2016-05-01',
address: '上海市普陀区金沙江路 1519 弄'
date: '2016-05-03',
address: '上海市普陀区金沙江路 1516 弄'
]
methods: {
cellDataChange ({rowIndex, key, value, row}) {
console.log(rowIndex)
console.log(key)
console.log(value)
console.log(row)
</script>`