Vue使用filters时将需要用到的字段(list)传过去使用

<template slot-scope="scope">
    {{ scope.row.id | filter(list) }}
</template>

filters: {
    filter: (item, list) => {
      ....
      return item
    }
}
Logo

前往低代码交流专区

更多推荐