hello i am new among you, I want to transfer the data from the props to the "items new" data, but it didn't work no matter what I did. is there a way to run this?
{{ itemsnew }}
</template>
<script>
export default {
name: 'ImageList',
props: ['items'],
data() {
return {
itemsnew: this.files(),
dragging: false,
}
},
computed: {
files() {
return this.items
},
},
}
</script>