我正在尝试Vue2
使用dagre-d3
用于渲染有向图的非常简单的示例。不幸的是,即使是非常简单的例子,它也行不通。在网上其他地方找到的示例使用的是旧版本的d3
. 目前,Vue2
app 大多是带有typescript
as 语言的路由器的默认模板。Diagram
组件在javascript
(由于我的代码中缺少类型d3
和dagre-d3
)。
运行下面提到的组件时,会发生以下错误,并且<svg>
块中没有显示任何内容。
Error in mounted hook: "TypeError: edge is undefined"
它发生在这条线上
render(container, g);
我唯一能想到的是我可能缺少一些依赖项,或者所有组件都必须是打字稿。
帮助?
图.vue:
<template>
<div class="myback">
<h1>This is a diagram component</h1>
<svg>
<g></g>
</svg>
</div>
</template>
<script>
import * as d3 from "d3";
import dagreD3 from "dagre-d3";
// let edges = {}
// let nodes = {}
// let g = new dagreD3.graphlib.Graph().setGraph({})
export default {
/*
data () {
return {
edges: {},
nodes: {}
}
},
*/
mounted() {
/* create graph itself */
const g = new dagreD3.graphlib.Graph().setGraph({});
g.setGraph({
nodesep: 70,
ranksep: 50,
rankdir: "LR",
marginx: 20,
marginy: 20,
});
console.log(g);
const render = new dagreD3.render(); // eslint-disable-line new-cap
console.log(render);
const svg = d3.select("svg");
const container = svg.select("g");
console.log(svg);
console.log(container);
/* define zoom behavior */
function zoomed(e) {
container.attr("transform", e.transform);
}
const zoom = d3.zoom().scaleExtent([1, 10]).on("zoom", zoomed);
g.setNode("kspacey", { label: "Kevin Spacey", width: 144, height: 100 });
g.setNode("blabla", { label: "blabla", width: 144, height: 100 });
g.setEdge("kspacey", "blabla");
svg.call(zoom);
render(container, g);
},
/*
methods: {
draw () {
}
}
*/
};
</script>
<style scoped>
section {
margin-bottom: 3em;
}
section p {
text-align: justify;
}
svg {
border: 1px solid #ccc;
overflow: hidden;
margin: 0 auto;
background: white;
width: 800px;
height: 600px;
}
text {
font-weight: 300;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serf;
font-size: 14px;
}
path.link {
fill: none;
stroke: #666;
stroke-width: 1.5px;
}
.node rect {
stroke: #333;
fill: #fff;
stroke-width: 1.5px;
}
.myback {
background: gray;
}
</style>
Codesanbox 链接在这里