'v-slot' directive doesn't support any modifierとエラーが出たときの対処方法。
Nuxtを利用していると、プロジェクトの立ち上げ時に、ESLintというLintingツールをいれると、
v-slotで書いたとき部分に下記のようなエラーが出た。
'v-slot' directive doesn't support any modifier
実際に実行したかったコードはこれ↓。
<template>
<v-data-table dense :headers="headers" :items="items" class="elevation-1">
<template v-slot:item.actions="{ item }">
<v-btn @click="deleteRow(item)">delete</v-btn>
</template>
</v-data-table>
</template>
<script lang="ts">
import { Component, Vue } from 'nuxt-property-decorator'
import axios from 'axios'
@Component({})
export default class AxiosPractice extends Vue {
items: any[] = []
headers = [
{ text: 'id', value: 'id' },
{ text: 'name', value: 'name' },
{ text: 'email', value: 'email' },
{
text: 'Actions',
value: 'actions',
sortable: false,
},
]
deleteRow(item: any) {
let index = this.items.findIndex((it) => it.email === item.email)
this.items.splice(index, 1)
}
async mounted() {
const response = await axios.get(
'https://jsonplaceholder.typicode.com/posts/1/comments'
)
this.items = response.data.map((comment: any) => ({
id: comment.id,
email: comment.email,
name: comment.name,
}))
}
}
</script>
調べてみるとどうやら、ESLintではv-slotという書き方はご法度らしい。
これはESLint的には×
Vue.js
<template v-slot:item.actions="{ item }">
これならO
Vue.js
<template v-slot:[`item.actions`]="{ item }">
v-slotの部分を書き換えたことで、無事に実行できました。
Lintingツールって必要だろって、周りに流されて入れてしまったが、
がっつり躓いた。
皆さんもお気を付けください。
(v-slotの記述方法は https://stackoverflow.com/questions/61344980/v-slot-directive-doesnt-support-any-modifier より引用)
Author And Source
この問題について('v-slot' directive doesn't support any modifierとエラーが出たときの対処方法。), 我々は、より多くの情報をここで見つけました https://qiita.com/pokoTan2525/items/c698457d2473dab0868f著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .