inflearn logo
강의

강의

N
챌린지

챌린지

멘토링

멘토링

N
클립

클립

로드맵

로드맵

지식공유

Vue.js - Django 연동 웹 프로그래밍 (실전편)

post_list.html - codepen

'post_list.html - codepen' 강의 수정 사항

502

큐 브
0

 


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 }">

그러면 됩니다^^

 

 

답변 1

0

김석훈

독자님. 감사합니다.