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
In the past few years, I have been moving back an...
introduction Sometimes, if there are a large numb...
Table of contents 1. Advantages of proxy vs. Obje...
Table of contents Determine whether a record alre...
*******************Introduction to HTML language (...
After pressing Enter on the webpage, the form is a...
This article introduces how to create an index on...
Table of contents Preface text 1. Panel 2. Huaron...
WeChat applet calculator example, for your refere...
Table of contents 1. Why NanoID is replacing UUID...
I was playing with CentOS in a VMware virtual mac...
I just want to make a small thing that combines w...
1. Change the virtual machine hardware version in...
1. After connecting and logging in to MySQL, firs...
1. Common connections for mysql INNER JOIN (inner...