实例 如果 template 的根中有多个元素,$el 对象将只是 Vue 内部使用的根元素中第一个元素的文本节点表示

x
 
<template>
  <div>
    <h2>Example $el Object</h2>
    <p>We are not able to use the $el object to change the background color of the root DIV tag when there are other tags on the root level. Open browser console to see the error generated.</p>
    <button v-on:click="changeColor">Click here</button>
  </div>
  <p>With this extra p-tag there are two tags on the root level.</p>
</template>
<script>
export default {
  methods: {
    changeColor() {
      this.$el.style.backgroundColor = 'lightgreen';
    }
  }
}
</script>
<style>
#app > div, #app > p {
  border: solid black 1px;
  padding: 10px;
}
</style>                  

输出结果