[typescript + vue] $refs 引用组件的实例报错

ts + vue 的项目不能直接在标签上加ref来获得组件的实例,需要定义$refs,并引用组件实例

1 export default class TableWarp extends Vue {
2   public $refs!: {
3     page: page
4   }
5 }

之后再正常使用即可

this.$refs.page.xxx

 

posted @ 2020-08-12 17:11  re-saika  阅读(1932)  评论(0编辑  收藏  举报