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

自定义过滤器-有参数

时间:2017-08-24 00:02:14      阅读:314      评论:0      收藏:0      [点我收藏+]

标签:自定义   idt   mob   doctype   input   utf-8   过滤器   cal   status   

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

    </script>
</head>
<body>
    <div id="box">
        {{a | toDou 1 2}}
    </div>
    <script>
        Vue.filter(toDou,function(input,a,b){
            alert(a+,+b);
            return input<10?0+input:‘‘+input;
        });
        var vm=new Vue({
            data:{
                a:9
            },
            methods:{

            }
        }).$mount(#box);

    </script>
</body>
</html>

 

自定义过滤器-有参数

标签:自定义   idt   mob   doctype   input   utf-8   过滤器   cal   status   

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

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