vue2.0注意的地方

2018-01-01  本文已影响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 .

上一篇下一篇

猜你喜欢

热点阅读