獲取Vue實例對象的方式有多種,以下為幾種常用的方法:
1. 通過全局變量 $vm
<script> var app = new Vue({ el: '#app', }); var vm = app.$vm; </script>
在Vue實例內部,我們可以訪問 $vm 來獲取實例對象。
2. 通過 ref 屬性
<div id="app"> <component ref="child"></component> </div> <script> var app = new Vue({ el: '#app', }); var child = app.$refs.child; </script>
在組件內部,我們可以使用 ref 屬性,并在組件實例上訪問 $refs 來獲取子組件實例對象。
3. 通過 $children 屬性
<div id="app"> <component ref="child"></component> </div> <script> var app = new Vue({ el: '#app', }); var child = app.$children[0]; </script>
$children 屬性返回當前實例下的所有直接子組件,我們可以通過索引訪問需要的子組件。
上一篇php strtotim
下一篇css能設定時間嗎