zoukankan      html  css  js  c++  java
  • vue-自定义指令-元素指令

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>智能社——http://www.zhinengshe.com</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{
                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>
    
  • 相关阅读:
    POJ2524+并查集
    POJ3697+BFS+hash存边
    POJ1151+线段树+扫描线
    POJ2528+线段树
    ubuntu 和 win7 远程登陆 + vnc登陆
    POJ3690+位运算
    POJ3283+字典树
    POJ3282+模拟
    POJ2349+prim
    2016.6.13
  • 原文地址:https://www.cnblogs.com/wangxue420/p/7106294.html
Copyright © 2011-2022 走看看