scrolToTop() {
this.$refs.dialog.scrollTo(0, 0);
},
const wrapper = shallowMount(Component, {
mocks: {
$refs: {
dialog: {
scrollTo() {
return true;
}
}
}
}
});