fix(rya): wait for DOM finished before update

This commit is contained in:
SabreCat
2023-05-05 16:27:19 -05:00
parent 9f9e6c4950
commit b026daec90

View File

@@ -110,7 +110,9 @@ export default {
};
},
updated () {
this.handleExternalLinks();
window.setTimeout(() => {
this.handleExternalLinks();
}, 500);
},
computed: {
...mapState({ user: 'user.data' }),