无法在空数组中添加新对象

时间:2019-10-10 22:03:33

标签: javascript vue.js

我想从组件的内部状态填充数组。

<script>
export default {
  data() {
    return {
      services: [],
    };
  },
  async mounted() {
    const newService = {
      name: 'Smth',
      description: 'Smth',
      };
    this.services.unshift(newService);
  },
};
</script>

我收到“ TypeError:_this.services.unshift不是函数”。我不知道我在做什么错。你能帮我吗?

0 个答案:

没有答案