[Vuejs]-How to export data from javascript in vuejs?

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.

Leave a comment