Created
October 17, 2016 13:49
-
-
Save dkypooh/290965bb8ce05934456c5206c7f35a9a to your computer and use it in GitHub Desktop.
sf-draggable
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"> | |
| <!-- axis方位, 参数: x, y,--> | |
| <draggable name="test"> | |
| <h1 class="code">draggable</h1> | |
| </draggable> | |
| </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
| new Vue({ | |
| el : '#app', | |
| components : { | |
| 'draggable' : sfDnd.draggable | |
| } | |
| }) |
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
| .m-draggable-test { | |
| padding: 30px 50px; | |
| width: 700px; | |
| border:1px solid rgba(1, 169, 244, 0.4); | |
| border-radius: 4px; | |
| background-color: #fff; | |
| box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1); | |
| } | |
| h1 { | |
| margin-bottom: 30px; | |
| text-align: center; | |
| font-size: 36px; | |
| } |
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