# 深层结构数据
bing
绑定深层次的结构对象,prop
也是需要填写
<template>
<avue-crud :option="option"
:data="data"></avue-crud>
</template>
<script>
export default {
data () {
return {
form: {},
data: [{
deep: {
deep: {
deep: {
value: '我是深结构'
}
}
}
}],
option: {
labelWidth: 120,
column: [
{
label: '深结构',
prop: 'test',
bind: 'deep.deep.deep.value'
}
]
}
}
}
}
</script>
显示代码复制代码复制代码