简体   繁体   中英

How to use the props in vue component?

I try to use a prop in a computed value and i keep getting the error:

[Vue warn]: Error in render: "TypeError: Cannot read property 'length' of undefined" found in ---> at src/cmps/space-details/space-imgs.vue at src/pages/space-details.vue at src/App.vue

Maybe i'm using the prop wrong? the component:

<template>
  <div v-if="imgUrls.length" class="space-imgs" :class="pics">
    <img :src="img" v-for="(img, idx) in imgUrls.slice(0, 5)" :key="idx" />
  </div>
</template>

<script>
export default {
  props: { imgUrls: Array },

  computed: {
    pics() {
      return `pics-${this.imgUrls.length}`;
    },
  },
};
</script>

and this is how i pass the prop:

    <space-imgs :imgUrls="space.imgUrls" />

Thanks

Your template will be first rendered before the prop is passed, making imgUrls undefined. So just do this: v-if="imgUrls" .

Pass the prop like below. This will work.

<space-imgs :img-urls="space.imgUrls" />

For avoiding wrong prop data in component. initialize prop with default value.

props: { 
 imgUrls: {
     type: Array,
     default: [],
     required: true
 } 
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM