Commit d373826e authored by 张芳利's avatar 张芳利

作者信息等

parent d1afb838
Pipeline #15689 failed with stage
---
title: 浅谈Proxy
date: 2022/3/29 12:05:17
title: Map和Object
date: 2022/4/26 10:00:00
tags:
- vue3
- proxy
- map
- object
author: 张芳利
---
......@@ -311,7 +311,7 @@ obj[Symbol.iterator] = function() {
let nextIndex = 0;
return {
next: function () {
let array = Object.values(obj)
let array = Object.values(obj)
return nextIndex < array.length ? {
value: array[nextIndex++],
done: false
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment