Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

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

1 Answer

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...