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

Posted 193557749

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了20-基础-自定义指令-局部自定义指令相关的知识,希望对你有一定的参考价值。


<!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-基础-自定义指令-局部自定义指令的主要内容,如果未能解决你的问题,请参考以下文章

vue3.2 setup 之局部自定义指令

Vue 基础 - 自定义指令和 render 函数

Vue自定义指令

vue定义全局指令和局部指令

Vue.js学习 Item13 – 指令系统与自定义指令

Vue自定义指令--实现跟随鼠标浮层