Vue中v-el的作用是挂载。

挂载是控制页面某个区域的过程称之为挂载,简单而言就是在挂载之后可以控制页面的dom的操作了。

在Vue中有两种挂载的方式

  1. 通过v-el:'css选择器'
  2. 通过$mount('css选择器')

1. 通过v-el挂载

<body>
    <div id="app"></div>
    <!-- built files will be auto injected -->
</body>
<script>
new Vue({el:'#app'})
</script>
其中el是css选择器

2.通过$mount("css选择器")

<body>
    <div id="app"></div>
    <!-- built files will be auto injected -->
</body>
<script>
new Vue({
  ...
})
Vue.$mount('#app');
</script>
el的优先级是高于$mount的,在它们同时出现的时候以el挂载节点为准。