我想从组件的内部状态填充数组。
<script>
export default {
data() {
return {
services: [],
};
},
async mounted() {
const newService = {
name: 'Smth',
description: 'Smth',
};
this.services.unshift(newService);
},
};
</script>
我收到“ TypeError:_this.services.unshift不是函数”。我不知道我在做什么错。你能帮我吗?