> Vue實(shí)例也代理了data對象上所有的屬性,所以訪問vm.name等價于訪問vm.$data.name **`el`** 選擇一個dom元素作為Vue實(shí)例(對象)的掛載目標(biāo) 以下兩種方式都可以 ``` el: '#app', ``` ``` el: document.getElementById('app'), ``` **`data`** Vue實(shí)例的數(shù)據(jù)對象 ``` Vue實(shí)例也代理了data對象上所有的屬性,所以訪問vm.name等價于訪問vm.$data.name ``` 通過Vue實(shí)例的$el屬性訪問掛載的目標(biāo) ``` vm.$el ``` ![](https://img.itqaq.com/art/content/cef7921cbc07162316c1486aedaa2749.png)