Property '$el' does not exist on type 'Vue | Element | Vue[] | Element[]'.
Property '$el' does not exist on type 'Element'
vue 使用 typescript 报错
this.$refs.orderTable.$el.querySelectorAll('.el-table__body-wrapper > table > tbody')[0]
改为
(this.$refs.orderTable as Vue & { $el: () => any }).$el.querySelectorAll('.el-table__body-wrapper > table > tbody')[0]