过滤器-filterBy

Posted lanlanDong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了过滤器-filterBy相关的知识,希望对你有一定的参考价值。

<!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">
        <input type="text" v-model="a">
        <ul>
            <li v-for="val in arr | filterBy a">
                {{val}}
            </li>
        </ul>
    </div>
    <script>

        var vm=new Vue({
            data:{
                arr:[width,height,background,orange],
                a:‘‘
            },
            methods:{

            }
        }).$mount(#box);

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

 

以上是关于过滤器-filterBy的主要内容,如果未能解决你的问题,请参考以下文章

Vue Draggable 不能与 filterBy 一起使用?

Ember.JS - 无法根据计算属性进行过滤或过滤

Sencha touch 2 filterby() 不更新记录

自定义键盘事件

Rich:Columns - FilterBy

vuejs通过filterBy,orderBy实现搜索筛选,降序排序数据实例