使用vue flow时,遇到下面的定:
const { onPaneReady, onNodeDragStop, onConnect, addEdges, setTransform, toObject,onNodeClick } = useVueFlow()
这实际上是es6的简写,说明如下。
const {xxx} = this.state
是es6得写法,相当于
const xxx= this.state.xxx
const {comment,index}= this
含义相当于:
const comment=this.comment
const index=this.index
语言的进化为了方便,但当进化到一定程度,可能会产生新的语义。
网友评论