Vue+Vant implements the top search bar

Vue+Vant implements the top search bar

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

Search bar component source code (SearchBar.vue)

<template>
  <section class="city-search">
    <van-icon class="search-icon" name="search" />
    <input placeholder="Enter the search keyword here" v-model="KeyWord">
    <van-icon class="clear-icon" name="clear" v-show="KeyWord" @click="clearSearchInput" />
  </section>
</template>
 
<script>
export default {
   data() {
        return {
            KeyWord: '',
        }
    },
    methods: {
        clearSearchInput() {
            this.KeyWord = '';
        }
    }
}
</script>
 
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style>
    .city-search {
        background-color: #F7F8FA;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        height: 2.3rem;
        width: 94vw;
        margin: 2vw 4vw;
        border-radius: 8px;
    }
    .search-icon {
      margin-left: 5px;
    }
    input {
      margin: 0 1.5vw;
      background-color: #F7F8FA;
      border: 0px;
      font-size: 14px;
      flex: 1
    }
    .clear-icon { color: #999;}
  
</style>

Other components rely on reference retrieval components

Home page reference search component:

<template>
  <div>
      <search></search>
        Home</div>
</template>
 
<script>
import Search from '@/components/SearchBar'
export default {
   name: "home",
   components:
      'search': Search,
    },
}
</script>
 
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style>
 
</style>

Effect screenshots:

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:
  • Vue elementui implements the example code of the search bar public component encapsulation

<<:  Solution to the problem of MySQL thread in Opening tables

>>:  Detailed explanation of how to install the system on VMware workstation 14 pro (virtual machine)

Recommend

Use vue to implement handwritten signature function

Personal implementation screenshots: Install: npm...

Implementation of vertical centering with unknown height in CSS

This article mainly introduces the implementation...

Detailed explanation of the role of static variables in MySQL

Detailed explanation of the role of static variab...

mysql batch delete large amounts of data

mysql batch delete large amounts of data Assume t...

Implementing parameter jump function in Vue project

Page Description:​ Main page: name —> shisheng...

Network configuration of Host Only+NAT mode under VirtualBox

The network configuration of Host Only+NAT mode u...

Summary of the use of Datetime and Timestamp in MySQL

Table of contents 1. How to represent the current...

JavaScript imitates Jingdong carousel effect

This article shares the specific code for JavaScr...

MySQL 8.0.13 manual installation tutorial

This article shares the manual installation tutor...

Talk about the 8 user instincts behind user experience in design

Editor's note: This article is contributed by...

Detailed explanation of the background-position percentage principle

When I was helping someone adjust the code today,...

Html tips to make your code semantic

Html semantics seems to be a commonplace issue. G...

Summary of MySQL database like statement wildcard fuzzy query

MySQL error: Parameter index out of range (1 >...

Detailed tutorial on installing Nginx 1.16.0 under Linux

Because I have been tinkering with Linux recently...