自定义元指令-素指令
Posted lanlanDong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义元指令-素指令相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title></title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black"> <style> zns-red{ width:100px; background: gray; height:100px; display: block; } </style> <script src="vue.js"></script> <script> Vue.elementDirective(‘zns-red‘,{ bind:function(){ this.el.style.background=‘red‘; } }); window.onload=function(){ var vm=new Vue({ el:‘#box‘, data:{ a:‘blue‘ } }); }; </script> </head> <body> <div id="box"> <zns-red></zns-red> </div> </body> </html>
以上是关于自定义元指令-素指令的主要内容,如果未能解决你的问题,请参考以下文章
十自定义指令ESLint代码检查工具与axios挂载到Vue原型