Nuxt.js 项目console报错 Uncaught DOMException

今天撸Nuxt.js项目时,控制台一直报这个错:

1
Uncaught DOMException: Failed to execute 'setAttribute' on 'Element': '0' is not a valid attribute name.

打包之后也会出现这个错误
很烦,百度不到解决方案,还是老老实实Google吧

Github上的相关Issue:
https://github.com/nuxt/vue-meta/issues/87
https://github.com/nuxt/vue-meta/issues/54

找到了解决办法了,赶紧拿小本本记录一下📒✏

1
2
3
4
5
6
7
// 我想在head中加一个meta,结果就是这个meta导致的,删了就不报错了
head () {
return {
title: 'xxxxxx',
meta: {'http-equiv': "X-UA-Compatible", 'content': "IE=edge"} // 删除
}
}

0%