vue数组的写法
时间: 2023-10-22 22:22:20 浏览: 97
vue组件的写法汇总
Vue中的数组可以使用以下方式进行声明和初始化:
1. 直接声明空数组:
```
data() {
return {
myArray: []
}
}
```
2. 声明并初始化数组:
```
data() {
return {
myArray: [1, 2, 3, 4]
}
}
```
3. 使用Vue提供的$set方法添加新元素:
```
methods: {
addItem() {
this.$set(this.myArray, this.myArray.length, 'new item')
}
}
```
4. 使用ES6的扩展运算符添加新元素:
```
methods: {
addItem() {
this.myArray = [...this.myArray, 'new item']
}
}
```
以上是Vue数组的几种写法,可以根据具体需求选择适合的方式。
阅读全文