[Vuejs]-Vus JS update text area once due to mutliplayer application

0๐Ÿ‘

I popped the data into an array in created and used that non reactive stuff to populate the text area fields

  myArray: null,
    created() {
       //access the custom option using $options
      this.$options.myArray = this.myNodes
     },

Leave a comment