Vue implements small search function

Vue implements small search function

This article example shares the specific code of Vue to implement the search function for your reference. The specific content is as follows

<!DOCTYPE html>
<html>
 <head>
  <meta charset="utf-8">
  <title></title>
 </head>
 <body>
  <div id="app">
   <input type="text" v-model="keyword" placeholder="Enter keyword" />
   <div class="list">
    <div class="item" v-for="item in fFruit" :key="item">
     {{item}}
    </div>
   </div>
  </div>
 </body>
 <script src="js/vue.js" type="text/javascript" charset="utf-8"></script>
 <script type="text/javascript">
  new Vue({
   el:"#app",
   data(){
    return {
     keyword:"",
     fruit:
      "Apple", "Sand apple", "Begonia", "Aronia", "Loquat", "Hawthorn", "Hawthorn", "Pear",
      "Snow pear", "Quincea", "Rose hip", "Rannon", "Apricot", "Cherry", "Peach", "Peach",
      "Nectarine", "Peach", "Plum", "Plum", "Prune", "White Jade Cherry", "Blackberry",
      "Raspberry", "Cloudberry", "Loganberry", "Brunette", "Strawberry", "Pineappleberry", "Orange",
      "Sugar orange", "orange", "lemon", "lime", "pomelo", "kumquat", "grapefruit", "citron",
      "Buddha's hand", "Finger orange", "Yellow fruit", "Cantaloupe", "Cantaloupe", "Honey melon", "Prickly horn melon"
     ]
    }
   },
   computed:{
    "fFruit"(){
     // If the keyword is empty, return all fruits if(this.keyword==""){
     return this.fruit;
    }else{
     // When a certain item in Frui contains keyword text, keep the current data // filter returns true to keep, false to filter out return this.fruit.filter(item=>{
      return item.includes(this.keyword)
     })
    }
    }
    
   }
  })
 </script>
</html>

result:

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Implementing a simple search box based on Vue.js
  • How to use vue + element to implement table paging and front-end search
  • Vue.js implements table functions of multi-condition filtering, searching, sorting and paging
  • Vue implements search function
  • Vue Element grouping + multi-selection + searchable Select selector implementation example
  • Vue el-autocomplete remote search drop-down box and implement automatic filling function (recommended)
  • Vue component practice searchable drop-down box function
  • Implementing a custom component for searchable drop-down box based on Vue
  • Vuejs uses filterBy and orderBy to implement search filtering and descending sorting of data
  • Detailed explanation of the use of Vue2.0 multi-condition search component

<<:  Search engine free collection of website entrances

>>:  A brief discussion on the underlying principle of mysql join

Recommend

Detailed explanation of Promises in JavaScript

Table of contents Basic usage of Promise: 1. Crea...

MySQL 5.7.18 installation and configuration method graphic tutorial (CentOS7)

How to install MySQL 5.7.18 on Linux 1. Download ...

Command to view binlog file creation time in Linux

Table of contents background analyze method backg...

A brief analysis of how to set the initial value of Linux root

Ubuntu does not allow root login by default, so t...

How to add Lua module to Nginx

Install lua wget http://luajit.org/download/LuaJI...

Implementing carousel with native JavaScript

This article shares the specific code for impleme...

How to install Docker and configure Alibaba Cloud Image Accelerator

Docker Installation There is no need to talk abou...

Best way to replace the key in json object

JSON (JavaScript Object Notation, JS Object Notat...

Django online deployment method of Apache

environment: 1. Windows Server 2016 Datacenter 64...

Pure CSS to achieve a single div regular polygon transformation

In the previous article, we introduced how to use...

MySQL database backup and recovery implementation code

Database backup #grammar: # mysqldump -h server-u...

How to change $ to # in Linux

In this system, the # sign represents the root us...

JavaScript drag time drag case detailed explanation

Table of contents DragEvent Interface DataTransfe...

linux No space left on device 500 error caused by inode fullness

What is an inode? To understand inode, we must st...