[Vuejs]-Vue: Mysterious ghost props?

0👍

This line seems the likely cause, though without seeing the code for modalMeta it’s difficult to be sure:

v-bind="modalMeta"

This is using the object v-bind syntax, so whatever properties exist in the modalMeta object will be passed as props to the component.

See:

Leave a comment