Skip to content

这是一个可以自由拖拽,拉伸的 组件,包括调块的内容,颜色,字体大小等等

Notifications You must be signed in to change notification settings

hyzgit/vue-drag-infinite

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vue-drag-infinite

一个vue自由拖拽的插件,自由修改div块的宽高颜色等。。。

installation

# install
npm install --save vue-drag-infinite

vueDragInfinite 引入方式

//全局引入
import Vue from 'vue'
import vueDragInfinite from 'vue-drag-infinite'

Vue.use(vueDragInfinite)

页面使用方式

<vue-drag-infinite :json="json" :name="name" @save="saveJson"></vue-drag-infinite>

export default {
  data () {
    return {
		name:'默认标题文字',//默认标题文字
		json:[//默认div块的信息 为空的时候只能新增不能修改
			{
	         style:{
	           width:"150px",
	           height:"150px",
	           fontSize:"14px",
	           color:"#fff",
	           left:"50px",
	           backgroundColor:"#999"
	         },
	         text:'这是第一个div'
	        },
		],
    }
  },
  methods:{
  	saveJson(obj){
  		console.log(obj)
  	}
  }
}

About

这是一个可以自由拖拽,拉伸的 组件,包括调块的内容,颜色,字体大小等等

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Vue 65.1%
  • JavaScript 23.0%
  • HTML 11.9%