码迷,mamicode.com
首页 > 其他好文 > 详细

vue 自定义指令

时间:2018-03-04 17:12:30      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:自定义指令   put   har   input   cti   function   directive   new   type   


<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Title of page</title>
</head>
<body>
<div id="exss">
<input v-focus>
</div>

</body>
<script src="https://cdn.jsdelivr.net/npm/vue@2.5.13/dist/vue.js"></script>
<script >
// 注册一个全局自定义指令 `v-focus`
// Vue.directive(‘focus‘, {
// // 当被绑定的元素插入到 DOM 中时……
// inserted: function (el) {
// // 聚焦元素
// el.focus()
// console.log(111)
// }
// })
new Vue({
el:"#exss",
directives: {
focus: {
// 指令的定义
inserted: function (el) {
el.focus()
}
}
}
})
</script>
</html>

vue 自定义指令

标签:自定义指令   put   har   input   cti   function   directive   new   type   

原文地址:https://www.cnblogs.com/dianzan/p/8505104.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!