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

20-基础-自定义指令-局部自定义指令

时间:2019-05-28 22:42:09      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:com   ble   pre   html   name   ted   content   body   tle   


<!DOCTYPE html>
<html>

<head>
    <meta charset='UTF-8'>
    <meta name='viewport' content='width=device-width,initial-scale=1.0'>
    <meta http-equiv='X-UA-Compatible' content='ie=edge'>
    <title>Document</title>
</head>

<body>
    <div id='app'>
        <input type="text" v-focus>
    </div>
    <script src='./vue.js'></script>
    <script>
        new Vue({
            el: '#app',
            data: {},
            // // 局部自定义指令
            // // 1. 定义 (通过选项)
            // // 2. 功能
            // // 3. 使用
            directives: {
                // 指令名字:{inserted:function(el){}}
                focus: {
                    inserted: function (el) {
                        el.focus();
                    }
                }
            },
            methods: {}
        });
    </script>
</body>

</html>

20-基础-自定义指令-局部自定义指令

标签:com   ble   pre   html   name   ted   content   body   tle   

原文地址:https://www.cnblogs.com/divtab/p/10940539.html

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