Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
785 views
in Technique[技术] by (71.8m points)

vue.js - Bind Vue on body or others element

I've seen many times Vue instance is bind on body tag. Other times this is bind on a div id

I'm asking when i should use body tag or an id tag (that limit the scope of the Vue instance).

Two examples:

new Vue({
  el: 'body'
});

OR

new Vue({
  el: '#a-div'
});
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You should never use the body tag. In fact, it raises a warning to use the body tag.

Added a warning when mounting the root instance to body or html. This is no longer recommended in 2.0.

This is from the release notes, anyways it's incorrect, it raises an error.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...