'v-slot' directive doesn't suppo
2020-08-20 本文已影响0人
简陌刀丶阿吉
发生原因:
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 }">