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.
12 lines
511 B
12 lines
511 B
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')))
|
|
|