0๐
#item=""
is a shorthand of v-slot:item=""
which should be used only with component tag :
<draggable #item="" ...>
<li ...
</draggable>
or template tag :
<draggable ...>
<template #item="">
<li ...
</template>
</draggable>
- [Vuejs]-How to restrict VueX store access to certain pages
- [Vuejs]-Javascript file is not working in vue cli html template
Source:stackexchange.com