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