Former-commit-id: 2a39e97c2e533900e9a985295c4e2178350cc569 [formerly 2a39e97c2e533900e9a985295c4e2178350cc569 [formerly 2a39e97c2e533900e9a985295c4e2178350cc569 [formerly 2a39e97c2e533900e9a985295c4e2178350cc569 [formerly 0c77db13d90e857366cc0213bfa1f5718ac1f4e0 [formerly 0897a74847ef61a667ad138e19d3da8a8a972854]]]]] Former-commit-id: 4a6dbf8ffe33b4948fd0a64dc1797b6624a301f8 Former-commit-id: 511b8dcf440b4d406b96b5842ec8e141fcb797a8 Former-commit-id: 3a7cdb741dc8778bf61a6e493b4d5439eb193648 [formerly 269587b400892a643673106f915b9286a121003e] Former-commit-id: 89f8a13be238bc49c98e06b0d627a64fa4e4f6d5 Former-commit-id: 8bcd2f5852a9ffef0dd1fe4ed3d2e2e5db318632 Former-commit-id: 32e4239223978d2dcec5a5f2249bfd1de9c6bcec Former-commit-id: 1c8460945e80d03fe7f1f0eba5cd5be3c735c4c7 Former-commit-id: b3bc21bbadce3606b6861418fbe395de74f9b6ca
77 lines
1.7 KiB
Vue
77 lines
1.7 KiB
Vue
<template>
|
|
<d2-container>
|
|
<template slot="header">表格slot</template>
|
|
<d2-crud
|
|
ref="d2Crud"
|
|
:columns="columns"
|
|
:data="data">
|
|
<el-button slot="headerButton">自定义按钮1</el-button>
|
|
<el-button slot="headerButton" type="primary" round>自定义按钮2</el-button>
|
|
</d2-crud>
|
|
<el-card shadow="never" class="d2-mb">
|
|
<d2-markdown :source="doc"/>
|
|
</el-card>
|
|
<el-card shadow="never" class="d2-mb">
|
|
<d2-highlight :code="code"/>
|
|
</el-card>
|
|
<template slot="footer">
|
|
<d2-link-btn title="文档" link="http://app.d3collection.cn/d2-admin-doc/lastest/zh/ecosystem-d2-crud/"/>
|
|
</template>
|
|
</d2-container>
|
|
</template>
|
|
|
|
<script>
|
|
import doc from './doc.md'
|
|
import code from './code.js'
|
|
|
|
export default {
|
|
data () {
|
|
return {
|
|
doc,
|
|
code,
|
|
columns: [
|
|
{
|
|
title: '日期',
|
|
key: 'date',
|
|
width: '180'
|
|
},
|
|
{
|
|
title: '姓名',
|
|
key: 'name',
|
|
width: '180'
|
|
},
|
|
{
|
|
title: '地址',
|
|
key: 'address'
|
|
}
|
|
],
|
|
data: [
|
|
{
|
|
date: '2016-05-02',
|
|
name: '王小虎',
|
|
address: '上海市普陀区金沙江路 1518 弄'
|
|
},
|
|
{
|
|
date: '2016-05-04',
|
|
name: '王小虎',
|
|
address: '上海市普陀区金沙江路 1517 弄'
|
|
},
|
|
{
|
|
date: '2016-05-01',
|
|
name: '王小虎',
|
|
address: '上海市普陀区金沙江路 1519 弄'
|
|
},
|
|
{
|
|
date: '2016-05-03',
|
|
name: '王小虎',
|
|
address: '上海市普陀区金沙江路 1516 弄'
|
|
}
|
|
]
|
|
}
|
|
},
|
|
mounted () {
|
|
console.log(this.$refs.d2Crud.d2Data)
|
|
}
|
|
}
|
|
</script>
|