22 lines
501 B
JavaScript
22 lines
501 B
JavaScript
import { createApp } from 'vue'
|
|
import { createPinia } from 'pinia'
|
|
import piniaPersist from 'pinia-plugin-persist'
|
|
import Embedded from './Embedded.vue'
|
|
|
|
// Initialize store (Pinia)
|
|
|
|
const pinia = createPinia()
|
|
pinia.use(piniaPersist)
|
|
|
|
// Mount App
|
|
|
|
const mountEls = document.querySelectorAll('div.vue-embed')
|
|
for (const mnt of mountEls) {
|
|
const app = createApp(Embedded, {
|
|
componentName: mnt.dataset.component,
|
|
componentId: mnt.dataset.componentId
|
|
})
|
|
app.use(pinia)
|
|
app.mount(mnt)
|
|
}
|