添加

//方式一
const state = reactive({
arr: []
});
state.arr = [1, 2, 3]
//方式二
const state = ref([])
state.value = [1, 2, 3]
//方式三
const arr = reactive([])
arr.push(...[1, 2, 3])

删除

//方式一、方式二 都可以直接通过赋值覆盖
state.arr = []
state.value = []
//方式三 不能直接赋值覆盖
arr.length = 0
Logo

基于 Vue 的企业级 UI 组件库和中后台系统解决方案,为数万开发者服务。

更多推荐