Vue的kv一致省略v

154 阅读1分钟

对象可以省略v

对象的表达是k:v,当对象的k和v相同的时候,可以省略v

image.png

举例: const a=1; const b= { a:a, }; const c={ a, }; //b可以简写为c