Skip to content

Instantly share code, notes, and snippets.

View dkypooh's full-sized avatar

matrixlabs dkypooh

  • Hangzhou, China
View GitHub Profile
@dkypooh
dkypooh / index.html
Created October 17, 2016 13:56
sf-dnd
<article id="app">
<h1>lucy -- tom</h1>
<sf-dnd :source="source" name="lucy" from="tom" >
<li v-for="(x, index) in source" :key="x" class="tom_item" >
{{x}}
</li>
</sf-dnd>
<h1>juck -- lucy</h1>
<sf-dnd :source="source2" name="juck" from="lucy" >
<li v-for="(x, index) in source2" :key="x" class="tom_item" >
@dkypooh
dkypooh / index.html
Created October 17, 2016 13:49
sf-draggable
<article id="app">
<!-- axis方位, 参数: x, y,-->
<draggable name="test">
<h1 class="code">draggable</h1>
</draggable>
</article>