Skip to content

v1.6.13

Compare
Choose a tag to compare
@nickreese nickreese released this 01 Apr 14:38
· 18 commits to master since this release

Add component mounting events to the browser.

This will now allow functions to be run once a component has mounted that are outside of Svelte.

  <script>
    document.addEventListener('ejs', (e) => {
      console.log('componentMount', e.detail);
    });
  </script>