[Vuejs]-Ignore undefined props

0👍

You can use:

    props: {
        prop1: Number,
        prop2: Number
    },
    inheritAttrs: false

This will tell Vue to not add additional props to the element as attribute but those props will instead be stored in $attrs, so you could access your prop using this.$attrs.prop3

See https://vuejs.org/guide/components/attrs.html#disabling-attribute-inheritance

Leave a comment