/ Gists / How to make a variable created outside of Vue reactive - Options API
On gists

How to make a variable created outside of Vue reactive - Options API

Vue.js

example.js Raw #

// options API

const externalVariable = getValue();

export default {
  data() {
    return {
      reactiveVariable: externalVariable,
    };
  }
};