vue-property-decorator @prop 如何定义 Array

'use strict'

import Vue from 'vue'
import { Prop, Watch } from 'vue-property-decorator'

interface ITabs {
    name: string
    value: string
}

export default class extends Vue {
    @Prop({
        type: Array,
        default() {
            return []
        }
    })
    public tabs!: ITabs[] // TS2416
}
TS2416: Property 'tabs' in type 'default' is not assignable to the
same property in base type 'object & Record<never,any> & Vue'. Type
'ITabs[]' is not assignable totype '{ name: ""; value: ""; }[] |
undefined'. Type 'ITabs[]' is not assignable to type '{ name: "";
value: ""; }[]'. Type 'ITabs' is not assignable to type '{ name: "";
value: ""; }'. Types of property 'name' are incompatible. Type
'string' is not assignable to type '""'.
阅读 10.8k
2 个回答
export default class extends Vue {
    @Prop({
        type: Array,
        default() {
            return []
        }
    })
    public tabs 
}
新手上路,请多包涵

你那接口是对象的接口。数组这样写interface FuckArr {

                  [index: number]: any
                }
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题