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>
Source:stackexchange.com