Back

vuejs - mapState object rest spread

发布时间: 2022-02-20 03:15:00

refer to: https://vuex.vuejs.org/zh/guide/state.html

https://github.com/tc39/proposal-object-rest-spread

let { x, y, ...z } = { x: 1, y: 2, a: 3, b: 4 };
x; // 1
y; // 2
z; // { a: 3, b: 4 }

Back