Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/amazon-s3/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Vue.js ant设计具有多维ajax数据行跨度的vue表_Vue.js_Antd_Antdv_Ant Design Vue - Fatal编程技术网

Vue.js ant设计具有多维ajax数据行跨度的vue表

Vue.js ant设计具有多维ajax数据行跨度的vue表,vue.js,antd,antdv,ant-design-vue,Vue.js,Antd,Antdv,Ant Design Vue,我有这样的数据 [ { name: 'jony' items: [ { name: 'chair', price: '10000', }, { name: 'laptop', price: '30000', }, ] }, { name: 'rebbeca' items: [ { name: 'pen', price: '1200', }, { nam

我有这样的数据

[
 {
  name: 'jony'
  items: [
   {
     name: 'chair',
     price: '10000',
   },
   {
     name: 'laptop',
     price: '30000',
   },
  ]    
 },
 {
  name: 'rebbeca'
  items: [
   {
     name: 'pen',
     price: '1200',
   },
   {
     name: 'book',
     price: '3000',
   },
  ]    
 }
]
我想用ant design vue表显示这样的数据

我已经这样做了,但行跨度不显示

对我的代码有什么建议吗