<script> ? ?//全局指令 ? ?//功能,給元素自動(dòng)加獲得輸入焦點(diǎn) ? ?Vue.directive('focus',{// ? ? ?inserted: (el)=>{// ? ? ? ?el.focus();// ? ? ?} ? ? ? ?inserted:function(el){ ? ? ? ? ? ?el.focus(); ? ? ? ?} ? ?}) ? ?let vm = new Vue({ ? ? ?el: '#app' ? ?})</script>
指令重要嗎
qinzhan
2017-09-15 20:21:48