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:
|
<<: Search engine free collection of website entrances
>>: A brief discussion on the underlying principle of mysql join
Table of contents Basic usage of Promise: 1. Crea...
How to install MySQL 5.7.18 on Linux 1. Download ...
Table of contents background analyze method backg...
Ubuntu does not allow root login by default, so t...
Install lua wget http://luajit.org/download/LuaJI...
This article shares the specific code for impleme...
Docker Installation There is no need to talk abou...
JSON (JavaScript Object Notation, JS Object Notat...
environment: 1. Windows Server 2016 Datacenter 64...
In the previous article, we introduced how to use...
Preface This article mainly introduces the releva...
Database backup #grammar: # mysqldump -h server-u...
In this system, the # sign represents the root us...
Table of contents DragEvent Interface DataTransfe...
What is an inode? To understand inode, we must st...