摘要: 自动聚焦指令 全局定义(main.js): Vue.directive('focus', { // 此处不是一个函数 // 当被绑定的元素插入到 DOM 中时…… inserted: (el) => { // el代表DOM元素 el.focus() // js操作DOM } }) 局部定义(XX. 阅读全文
posted @ 2020-01-17 10:15 菜鸟小何 阅读(156) 评论(0) 推荐(0) 编辑