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

自定义指令

时间:2017-08-24 01:13:25      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:title   dev   meta   doc   rect   char   cal   apple   span   

<!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>

    </style>
    <script src="vue.js"></script>
    <script>
        Vue.directive(red,function(){
            this.el.style.background=red;
        });

        window.onload=function(){
            var vm=new Vue({
                el:#box,
                data:{
                    msg:welcome
                }
            });
        };

    </script>
</head>
<body>
    <div id="box">
        <span v-red>
            asdfasd
        </span>
    </div>

</body>
</html>

2

<!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>

    </style>
    <script src="vue.js"></script>
    <script>
        Vue.directive(a-red,function(){
            this.el.style.background=red;
        });

        window.onload=function(){
            var vm=new Vue({
                el:#box,
                data:{
                    msg:welcome
                }
            });
        };

    </script>
</head>
<body>
    <div id="box">
        <span a-red>
            asdfasd
        </span>
    </div>

</body>
</html>

 

 

3

<!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>

    </style>
    <script src="vue.js"></script>
    <script>
        Vue.directive(red,function(){
            this.el.style.background=red;
        });

        window.onload=function(){
            var vm=new Vue({
                el:#box,
                data:{
                    msg:welcome
                }
            });
        };

    </script>
</head>
<body>
    <div id="box">
        <span v-red>
            asdfasd
        </span>
        <span v-red>
            asdfasd
        </span>
        <span v-red>
            asdfasd
        </span>
    </div>

</body>
</html>

4

<!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>

    </style>
    <script src="vue.js"></script>
    <script>
        Vue.directive(red,function(color){
            this.el.style.background=color;
        });

        window.onload=function(){
            var vm=new Vue({
                el:#box,
                data:{
                    a:blue
                }
            });
        };

    </script>
</head>
<body>
    <div id="box">
        <span v-red="a">
            asdfasd
        </span>
    </div>

</body>
</html>

5

<!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>

    </style>
    <script src="vue.js"></script>
    <script>
        Vue.directive(red,function(color){
            this.el.style.background=color;
        });

        window.onload=function(){
            var vm=new Vue({
                el:#box
            });
        };

    </script>
</head>
<body>
    <div id="box">
        <span v-red="‘blue‘">
            asdfasd
        </span>
    </div>

</body>
</html>

6

<!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>

    </style>
    <script src="vue.js"></script>
    <script>
        Vue.directive(red,{
            bind:function(){
                this.el.style.background=red;
            }
        });

        window.onload=function(){
            var vm=new Vue({
                el:#box
            });
        };

    </script>
</head>
<body>
    <div id="box">
        <span v-red>
            asdfasd
        </span>
    </div>

</body>
</html>

 

自定义指令

标签:title   dev   meta   doc   rect   char   cal   apple   span   

原文地址:http://www.cnblogs.com/lanlanJser/p/7420906.html

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