AntV X6使用Vue组件作为渲染节点

1.使用依赖

复制代码
npm install @antv/x6 --save
npm install @antv/x6-vue-shape --save

下述代码使用Vue2技术栈,若使用Vue3则直接参考「AntV」X6 自定义vue节点(vue3) https://www.yuque.com/sxd_panda/antv/vue-node

2.节点组件

要点:

  • 使用inject注入AntV X6父组件中的依赖 getNode
  • 使用this.getNode()可以获取/监听,父组件在节点上配置的数据。
html 复制代码
<!-- branch.vue -->
<template>
  <div>
      {{ name }}
  </div>
</template>
<script>
export default {
  inject: ["getNode"],
  data() {
    return {
      name: '',
    }
  },
  mounted() {
    const node = this.getNode();
    this.name = node.data.name;
    
    // 监听数据
    node.on('change:data',({current})=>{
    	console.log("监听父组件改变的数据",current)
    })
  }
}
</script>

3.父组件(使用节点渲染)

html 复制代码
<template>
  <div>
    <div id="container" />
  </div>
</template>
<script>
// 引入 AntV X6 库
import { Graph } from '@antv/x6'
import { register } from '@antv/x6-vue-shape'

// 引入2中的子组件
import branch from './branch.vue'
// 制作组件节点
register({
  shape: 'branch-node',
  width: 100,
  height: 100,
  component: branch,
})
export default {
	mounted() {
    this.initGraph()
 	 },
	methods: {
		initGraph() {
			const width = window.innerWidth
	     	const height = window.innerHeight
			// 初始化 Graph 对象
	     	const graph = new Graph({
	        container: document.getElementById('container'), // 容器元素
	        width: width, // 设置宽度为屏幕宽度
	        height: height, // 设置高度为屏幕高度
	        interacting: {
	          nodeMovable: false, // 可拖拽节点
	          edgeMovable: false // 可拖拽边
	        },
	        connecting: {
	          connectionPoint: 'anchor'// 连接中心锚点
	        }
	      })
	      // 创建组件节点
	      const branchNode = graph.addNode({
	        x: 950,
	        y: 240,
	        shape: 'branch-node',
	        data: {
	          name: '组件节点名称'
	        },
	      })
		}
  }
}
</script>

Vue3方法参考:「AntV」X6 自定义vue节点(vue3) https://www.yuque.com/sxd_panda/antv/vue-node

参考地址

1.AntV X6结合Vue组件渲染节点,并与节点组件进行双向的数据交互.

2.Ant X6指南踩坑指南.

相关推荐
你挚爱的强哥1 天前
【sgSelectExportDocumentType】自定义组件:弹窗dialog选择导出文件格式word、pdf,支持配置图标和格式名称,触发导出事件
vue.js·pdf·word
小杨快跑~1 天前
Vue 3 + Element Plus 表单校验
前端·javascript·vue.js·elementui
我叫张小白。1 天前
Vue3监视系统全解析
前端·javascript·vue.js·前端框架·vue3
WYiQIU1 天前
11月面了7.8家前端岗,兄弟们12月我先躺为敬...
前端·vue.js·react.js·面试·前端框架·飞书
娃哈哈哈哈呀1 天前
formData 传参 如何传数组
前端·javascript·vue.js
513495921 天前
Vite环境变量配置
vue.js
2503_928411561 天前
11.24 Vue-组件2
前端·javascript·vue.js
weixin79893765432...1 天前
Vue + Express + DeepSeek 实现一个简单的对话式 AI 应用
vue.js·人工智能·express
高级程序源1 天前
springboot社区医疗中心预约挂号平台app-计算机毕业设计源码16750
java·vue.js·spring boot·mysql·spring·maven·mybatis
cypking1 天前
Vue 3 + Vite + Router + Pinia + Element Plus + Monorepo + qiankun 构建企业级中后台前端框架
前端·javascript·vue.js