发生原因:
Eslint校验出现问题,vue2.0之后出现的。
解决方案:
出现Eslint错误:
<template v-slot:item.actions="{ item }">
没有错误:
<template v-slot:[`item.actions`]="{ item }">
Eslint校验出现问题,vue2.0之后出现的。
出现Eslint错误:
<template v-slot:item.actions="{ item }">
没有错误:
<template v-slot:[`item.actions`]="{ item }">