outside catch time when componen is fully rendered
code-hs opened this issue · 0 comments
code-hs commented
Need catch in index.html event, when component is rendered. vue3
<my-component></my-component>
<script>
const e = document.querySelector('my-component');
e.addEventListener('rendered', () => {
console.log('rendered');
});
</script>