vue3 使用element plus 的el-table报错Uncaught TypeError: data.includes is not a function

 问题:

el-table渲染报错,vue3 使用element plus 的el-table报错Uncaught TypeError: data.includes is not a function_第1张图片

 
          
          
          
        

//..初始化
 //订单详情
      const order = ref({
        order_logs: {}
      })

分析解决

换个字段没问题,发现是初始化

 :data="order_logs" 这个字段:order_logs有问题,类型不匹配应该是数组不是对象

解决:

初始el-table的data字段为数组。

const order = ref({  order_logs: []   })

你可能感兴趣的:(vue.js,elementui,javascript)