Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ilikerobots/34e65398ac7f7cdb7d2308f27a70d34b to your computer and use it in GitHub Desktop.
Save ilikerobots/34e65398ac7f7cdb7d2308f27a70d34b to your computer and use it in GitHub Desktop.
export const createAppInEl = (options, store, selector) => {
const mountEl = document.querySelector(selector);
const app = createApp(options, {...mountEl.dataset});
app.use(store);
// additional configurations here
app.mount(selector);
return app;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment