I am newbee at vuejs. I have a website and i want to use vuejs in some page. The page is built by laravel, jquery etc. and I want to use vuejs draggable component at particular area in that page.
https://kutlugsahin.github.io/vue-smooth-dnd
https://github.com/SortableJS/Vue.Draggable
Everyone said that Vuejs is good to easily start at running services. But not for me. I want to use above vue component in my existing HTML page without a WebPack build process.
That means, i will use only
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
and just plain html and js. (if possible, not use import things)
I read the article How to use a VueJS .vue component in a HTML page without a WebPack build process?,
They said "poi" is the best solution. At last of the answer, they said that i have to use "import Component from ...".
I cant not use "import" at my current plain html page. (cause i do not use webpack etc)
Is there someone to tell me real solution easily?