Open teampolyglot opened 4 years ago
I'd like to use this carousel in my own HTML using just a <script> tag, but no module bundlers and no extra Javascript code.
<script>
This is what I would like to achieve in a plain-old HTML file:
<script src="https://unpkg.com/vue"></script> <script src="path/to/vue-carousel.js"></script> <vue-carousel> <vue-slide>first slide</vue-slide> <vue-slide>second slide</vue-slide> </vue-carousel>
This should be possible because vue-cli-service does support two additional build targets:
vue-cli-service
vue-web-component-wrapper says that slots are well-supported
vue-web-component-wrapper
I'd like to use this carousel in my own HTML using just a
<script>
tag, but no module bundlers and no extra Javascript code.This is what I would like to achieve in a plain-old HTML file:
This should be possible because
vue-cli-service
does support two additional build targets:vue-web-component-wrapper
says that slots are well-supported