How does vue-property-decorator @ prop define 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" ".
Apr.23,2021

export default class extends Vue {
    @Prop({
        type: Array,
        default() {
            return []
        }
    })
    public tabs 
}

your interface is the interface of the object. The array reads interface FuckArr {

                  [index: number]: any
                }
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b220b0-2b5ed.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b220b0-2b5ed.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?