drag and drop in vue js without component

前端 未结 2 1419
轻奢々
轻奢々 2021-01-05 06:19

I want to use html 5 drag and drop in vue js .

I see the w3schools tutorial about drag and drop . It works in a simple html file but doesn\'t work in my vue project

2条回答
  •  一生所求
    2021-01-05 07:05

    you just need to call the vue event not the html event v-on:drop instead of drop for example

    here is the implementation of the example you provided in the link with vue

     
          
            
            
            
          
          
            

    Drag the p element back and forth between the two rectangles:

    Drag me!

    Note: drag events are not supported in Internet Explorer 8 and earlier versions or Safari 5.1 and earlier versions.

提交回复
热议问题