美文网首页
vue2.0注意的地方

vue2.0注意的地方

作者: 站着瞌睡 | 来源:发表于2018-01-01 19:43 被阅读0次

在使用vue2.0 的时候自己没有注意到的一个问题,就对html和body作了限制

el = el && query(el);

/* istanbul ignore if */

if (el === document.body || el === document.documentElement) {

"development" !== 'production' && warn(

"Do not mount Vue to  or  - mount to normal elements instead."

);

return this

}

所以只能在body内使用

The provided element merely serves as a mounting point. Unlike in Vue 1.x, the mounted >element will be replaced with Vue-generated DOM in all cases. It is therefore not >recommended to mount the root instance to  or .

相关文章

网友评论

      本文标题:vue2.0注意的地方

      本文链接:https://www.haomeiwen.com/subject/igyfpttx.html