2023-12-24 02:24:48 +01:00
|
|
|
import {defineCustomElement} from 'vue';
|
|
|
|
import classes from './style.css?inline';
|
2023-12-24 03:56:43 +01:00
|
|
|
import carousel from 'vue3-carousel/dist/carousel.css?inline';
|
2023-12-24 17:36:34 +01:00
|
|
|
import carouselStyle from './carousel.css?inline';
|
|
|
|
import Navigation from './components/Navigation.vue';
|
2023-12-24 02:24:48 +01:00
|
|
|
|
|
|
|
import Eventform from './Eventform.ce.vue';
|
2023-12-24 17:36:34 +01:00
|
|
|
Eventform.styles = [classes, carousel, carouselStyle];
|
2023-12-24 02:24:48 +01:00
|
|
|
|
|
|
|
customElements.define('event-form', defineCustomElement(Eventform));
|