Created
October 17, 2016 13:56
-
-
Save dkypooh/05d8557be39e28874dff7122f3387ba8 to your computer and use it in GitHub Desktop.
sf-dnd
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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" > | |
| {{x}} | |
| </li> | |
| </sf-dnd> | |
| <h1>tom -- lucy</h1> | |
| <sf-dnd :source="source1" name="tom" from="lucy"> | |
| <li v-for="(x, index) in source1" :key="x" class="tom_item"> | |
| {{x}} | |
| </li> | |
| </sf-dnd> | |
| <h1 class="code">{{source1}}</h1> | |
| </article> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| window.sfDND = { | |
| tom : ['1','2','3','4','5'], | |
| juck : ['z', 'y'], | |
| lucy : ['a', 'b'] | |
| }; | |
| new Vue({ | |
| el : '#app', | |
| data : function(){ | |
| return { | |
| source1 : window.sfDND.tom, | |
| source : window.sfDND.lucy, | |
| source2 : window.sfDND.juck | |
| } | |
| }, | |
| components : { | |
| 'sfDnd' : sfDnd.dnd | |
| }, | |
| methods:{ | |
| change : function(list){ | |
| console.log(list) | |
| } | |
| } | |
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script src="https://unpkg.com/sf-dnd@0.0.4/docs/vue.js"></script> | |
| <script src="https://unpkg.com/sf-dnd@0.0.4/docs/index.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| body { | |
| background-color: #caf0f5; | |
| } | |
| #app { | |
| margin: 30px auto; | |
| padding: 30px 50px; | |
| width: 700px; | |
| background-color: #fff; | |
| box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1); | |
| .code { | |
| margin-top: 20px; | |
| text-align: center; | |
| } | |
| h1 { | |
| margin-bottom: 30px; | |
| text-align: center; | |
| font-size: 36px; | |
| } | |
| } | |
| .m-dnd-tom, | |
| .m-dnd-lucy, | |
| .m-dnd-juck { | |
| padding: 20px; | |
| border: 1px dotted #d1d1d1; | |
| .tom_item { | |
| height: 33px; | |
| line-height: 33px; | |
| padding: 5px; | |
| box-sizing: border-box; | |
| &:nth-child(n+2) { | |
| border-top: 2px dashed #ffffff; | |
| } | |
| &:nth-child(odd) { | |
| background-color: rgba(33, 150, 243, 0.5) | |
| } | |
| &:nth-child(even) { | |
| background-color: rgba(255, 193, 7, 0.5) | |
| } | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <link href="https://unpkg.com/sf-dnd@0.0.2/docs/reset.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment