深层结构数据
约 45 字小于 1 分钟
2025-02-06
vue2
vue3
`bing`绑定深层次的结构对象,`prop`也是需要填写
<template>
<tvue-crud :option="option"
:data="data"></tvue-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>