Closed sanderfalleyn closed 6 years ago
[Vue warn]: Error in mounted hook: "TypeError: Object doesn't support property or method 'assign'"
Is it possible to transpile your code so that object.assign is not in your code?
You should use babel-polifill. Babel will not transpile code like Object.assign.
babel-polifill
Object.assign
And use import { markdownEditor } from 'vue-simplemde';, you will get the transpiled code.
import { markdownEditor } from 'vue-simplemde';
[Vue warn]: Error in mounted hook: "TypeError: Object doesn't support property or method 'assign'"
Is it possible to transpile your code so that object.assign is not in your code?