You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
511 B
13 lines
511 B
3 years ago
|
import './setPublicPath'
|
||
|
import Vue from 'vue'
|
||
|
import wrap from '@vue/web-component-wrapper'
|
||
|
|
||
|
// runtime shared by every component chunk
|
||
|
import 'css-loader/dist/runtime/api.js'
|
||
|
import 'vue-style-loader/lib/addStylesShadow'
|
||
|
import 'vue-loader/lib/runtime/componentNormalizer'
|
||
|
|
||
|
window.customElements.define('build-wc-async-app', wrap(Vue, () => import('~root/src/App.vue?shadow')))
|
||
|
|
||
|
window.customElements.define('build-wc-async-hello-world', wrap(Vue, () => import('~root/src/components/HelloWorld.vue?shadow')))
|