Created
May 12, 2021 08:55
-
-
Save ilikerobots/34e65398ac7f7cdb7d2308f27a70d34b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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