Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <div id="app">
    
    <div v-for="item in items" >
      <p>{{item.name}}<p>
    </div>
    
    <input type="text" v-model="typesearch" placeholder="type">
    <input type="text" v-model="codesearch" placeholder="code">
    <br/>
    {{processingmsg}}
  </div>  
  <script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.0.3/vue.js"></script>
  
</body>
</html>
 
const app = new Vue({
  
  el: '#app',
  
  data: {
     typesearch: '',
     codesearch: '',
     processingmsg: 'waiting for you...',
     items: [
       {name: 'Stackoverflow', type: 'development', code: "one"},
       {name: 'Game of Thrones', type: 'serie', code: "two"},
       {name: 'Jon Snow', type: 'actor', code: "three"}
     ]
  },
  
  watch: {
    typesearch: function (type) {
      this.processingmsg = "processing type..."
      this.filteredItemsType()
    },
    codesearch: function (code) {
      this.processingmsg = "processing code..."
      this.filteredItemsCode()
    }
  },
                    
  methods: {
    filteredItemsType: function() {
      return this.items.filter(item => {
         return item.type.indexOf(this.typesearch.toLowerCase()) > -1
      })
    },
    filteredItemsCode: function() {
      return this.items.filter(item => {
         return item.code.indexOf(this.codesearch.toLowerCase()) > -1
      })      
    }
  }                  
  
})
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
Omnipresentpro
0viewers