深层结构数据
效果预览可直接操作下方示例
bing绑定深层次的结构对象,prop也是需要填写
正在加载示例…
<template>
<avue-crud :option="option"
:data="data"></avue-crud>
</template>
<script setup>
import { ref } from 'vue';
const data = ref([{
deep: {
deep: {
deep: {
value: '我是深结构'
}
}
}
}]);
const option = ref({
labelWidth: 120,
column: [
{
label: '深结构',
prop: 'test',
bind: 'deep.deep.deep.value'
}
]
});
</script>
