ERROR Failed to compile with 1 error
[eslint]
D:\VueDjangoProject\frontend\src\components\PostList.vue
129:29 error 'v-slot' directive doesn't support any modifier vue/valid-v-slot
위와 같은 에러가 발생한다면 ...
아래와 같이 바꿔보세요
<template v-slot:item.actions="{ item }">
<template v-slot:[`item.actions`]="{ item }">
그러면 됩니다^^
독자님. 감사합니다.
답글