LoginSignup
3
1

More than 3 years have passed since last update.

'v-slot' directive doesn't support any modifierエラーの対処方法。

Posted at

'v-slot' directive doesn't support any modifierとエラーが出たときの対処方法。

[vue/valid-v-slot]
'v-slot' directive doesn't support any modifier.

xxx.vue
 With Eslint error

<template v-slot:item.name="{ item }">
xxx.vue
Without error:

<template v-slot:[`item.name`]="{ item }">

で解決

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1