Vue2+Webpack错误:Do not mount Vue to <html> or <body> - mount tonormal elements instead.
vue1.x 允许开发者以或作为根实体的挂载点,但到了VueJS2.0 后,只能通过 独立的节点挂载 ,如:div 等。否则会产生错误,警告讯息如下:"Do not mount Vue toor- mount tonormal elements instead."换成用独立的 DOM 节点,如 ,就可以正常运作了。
·
vue1.x 允许开发者以 <body> 或 <html> 作为根实体的挂载点,但到了VueJS2.0 后,只能通过 独立的节点挂载 ,如:div 等。
否则会产生错误,警告讯息如下:"Do not mount Vue to <html> or <body> - mount tonormal elements instead."
换成用独立的 DOM 节点,如 <divid="app"></div>,就可以正常运作了。
更多推荐
已为社区贡献3条内容
所有评论(0)