0👍
✅
The line
ymaps.ready(function () {
creates a new scope, so this
is no longer your Vue app.
Replace with
ymaps.ready(() => {
Or add .bind(this)
at the end of that function.
Source:stackexchange.com