[Vuejs]-Data is displayed in the vue console but not returned to the web page

1👍

There is no testmsg property in data. It should be:

data: () => ({
    testmsg: '',
    dropzoneOptions: {
          // rest of your code
     }
})
👤Arc

Leave a comment