Nuxtで以下のコードを書くと、エラーが表示されます。
ビルド上問題ないのですが、WebStormでエラーが表示されてしまいます。
なんかこんな可能性があるなど、教えていただけませんでしょうか。
vue
1<template> 2 <div class="test"> 3 {{ title }} 4 </div> 5</template> 6 7<script lang="ts"> 8import {Component, Vue, Prop} from "nuxt-property-decorator"; 9 10 11@Component({ 12 layout: "Hoge", 13 components: {} 14}) 15export default class Fuga extends Vue { 16 @Prop({type: String, default: 'タイトル'}) 17 title: string 18 19 @Prop({type: String, default: '説明'}) 20 explanation: string 21 22 23} 24</script> 25 26<style scoped> 27.test { 28 background-color: #FFFFFF; 29 height: 100vh; 30 } 31</style> 32
layout: "Hoge",
の部分で以下のエラーが出ます。
TS2769: No overload matches this call. Overload 1 of 2, '(options: ComponentOptions<Vue, DefaultData<Vue>, DefaultMethods<Vue>, DefaultComputed, PropsDefinition<Record<string, any>>, Record<...>> & ThisType<...>): <VC extends VueClass<...>>(target: VC) => VC', gave the following error. Argument of type '{ layout: string; components: {}; }' is not assignable to parameter of type 'ComponentOptions<Vue, DefaultData<Vue>, DefaultMethods<Vue>, DefaultComputed, PropsDefinition<Record<string, any>>, Record<...>> & ThisType<...>'. Object literal may only specify known properties, and 'layout' does not exist in type 'ComponentOptions<Vue, DefaultData<Vue>, DefaultMethods<Vue>, DefaultComputed, PropsDefinition<Record<string, any>>, Record<...>> & ThisType<...>'. Overload 2 of 2, '(target: VueClass<Vue>): VueClass<Vue>', gave the following error. Argument of type '{ layout: string; components: {}; }' is not assignable to parameter of type 'VueClass<Vue>'. Object literal may only specify known properties, and 'layout' does not exist in type 'VueClass<Vue>'.
あなたの回答
tips
プレビュー