[Vuejs]-Invalid expression passing props in vue.js template – IE11

0👍

IE11 doesn’t support the ECMAScript 2015 property name shorthand.

You’ll need to explicitly state the object’s key-values like this:

:dropdown-data="{ products: products, seasons: seasons }"

Leave a comment