0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

TypeError: Cannot read property '$createElement' of undefined

Posted at

不要なところで、誤って functional: true を設定していました。

// 誤
export default {
  functional: true,
}
vue.js
// 正
export default {
  functional: false,
  // または削除
}

他にも色々原因となり得るものは、あると思うのですが

自分は上記でハマりました。どこが原因かエラー文からはわかりにくかったので。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?