扩展vuejs组件接口?

时间:2019-07-24 11:27:18

标签: vue.js

我正在尝试扩展打字稿中的Vue.Component类型以添加​​两个自定义属性:bind和unbind

这就是我尝试过的

import Vue from "vue"

interface CustomComponent extends Vue.Component {
    bind: Function,
    unbind: Function
}

可悲的是我得到了这个错误

An interface can only extend an object type or intersection of object types with statically known members.

怎么了?谢谢

0 个答案:

没有答案