mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-10-05 21:09:43 +00:00
13 lines
391 B
TypeScript
13 lines
391 B
TypeScript
import { createApp } from "vue";
|
|
import AddressPicker from "ChillMainAssets/vuejs/AddressPicker/AddressPicker.vue";
|
|
|
|
document.addEventListener("DOMContentLoaded", async () => {
|
|
document
|
|
.querySelectorAll<HTMLDivElement>("div[data-address-picker]")
|
|
.forEach((elem): void => {
|
|
const app = createApp(AddressPicker);
|
|
|
|
app.mount(elem);
|
|
});
|
|
});
|