VUE Right-hand side of 'instanceof' is not an object Solution

Here we must note, props did not notice written before

 

  props: {
    wrd: '',
      off, 'z'
  },
 
This can not be resolved to the object, you must write a little more specific formats, such as:
 props: {
    word: {
      type:String,
      default:''
    },
    off: {
      type:String,
      default:'ls'
    }
  },
problem solved

Guess you like

Origin www.cnblogs.com/llcdbk/p/11971794.html