Web Demo Mobile Demo Angular Demo Vue Demo React Demo
源代码
<template>
  <div>
		<h2>Draggable Handle</h2>
		<div v-Draggable="{handle:'.dd-title'}" class="dd">
			<div class="dd-title">Title</div>
		</div>
  </div>
</template>

<script>
export default {};
</script>
<style>
.dd {
  width: 300px;
  height: 200px;
  border: 1px solid #ccc;
}
.dd-title {
  padding: 5px;
  background: #888;
  color: #fff;
}
</style>