创建二维响应式数组
代码语言:javascript复制const caculatorList = ref([[] as caculatorType[]]);
赋值
代码语言:javascript复制caculatorList.value = [
[
{ value: "0", type: "number", bgColor: "#aaa" },
{ value: ".", type: "other", bgColor: "#aaa" },
{ value: "=", type: "operator", bgColor: "#aaa" },
],
[
{ value: "1", type: "number", bgColor: "#aaa" },
{ value: "2", type: "number", bgColor: "#aaa" },
{ value: "3", type: "number", bgColor: "#aaa" },
{ value: " ", type: "operator", bgColor: "#ed8e09" },
],
]