我在vue2.x这样写的watch
watch: {
service() {
this.search();
},
expandRowKeys: {
handler(val) {
this.rowKeys = val;
},
},
datas: {
handler() {
this.pagination.limit = 10;
this.pagination.current = 1;
this.getTableDatas();
},
deep: true,
},
},
如果用typescript + vue3怎么写watch,求大佬指教