Skip to content

Instantly share code, notes, and snippets.

@dkypooh
Created October 17, 2016 13:49
Show Gist options
  • Select an option

  • Save dkypooh/290965bb8ce05934456c5206c7f35a9a to your computer and use it in GitHub Desktop.

Select an option

Save dkypooh/290965bb8ce05934456c5206c7f35a9a to your computer and use it in GitHub Desktop.
sf-draggable
<article id="app">
<!-- axis方位, 参数: x, y,-->
<draggable name="test">
<h1 class="code">draggable</h1>
</draggable>
</article>
new Vue({
el : '#app',
components : {
'draggable' : sfDnd.draggable
}
})
<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>
.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;
}
<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