[Vuejs]-[Vue warn]: Prop "zoom" expects a two-way binding type. (found in component: <map>)

0👍

I got it working finally.. Apparently in the docs that it was set to twoWay: true, which requires that you use something like :center.sync. After adding .sync it started working.

Before:

<map :center="center" :zoom="7"></map>

After:

<map :center.sync="center" :zoom.sync="7"></map>

Leave a comment