美文网首页
const {xxx} 写法

const {xxx} 写法

作者: 寻找无名的特质 | 来源:发表于2023-01-04 06:02 被阅读0次

使用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

语言的进化为了方便,但当进化到一定程度,可能会产生新的语义。

相关文章

网友评论

      本文标题:const {xxx} 写法

      本文链接:https://www.haomeiwen.com/subject/rouqcdtx.html