猿问

vue 中怎么初始化 Set、Map类型的数据?

data() {

    return {

        str: '',

        arr: [],

        obj: {},

        set: new Set()

    }

}

如果这样定义的话会有警告,现在我是在monted钩子中 this.set = new Set();


森栏
浏览 4635回答 1
1回答

POPMUISE

set 是关键字,不可以被使用为变量的。
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答