Vue implements a search box with a magnifying glass

Vue implements a search box with a magnifying glass

This article shares with you how to use Vue to implement a search box with a magnifying glass. The specific content is as follows

Usage of font icons in input single tag:

The first step is to globally import the iconfont icon in main.js;
The second step is to dynamically bind an attribute to the input tag and set the value to the variable in data;
Step 3: Change the &#x in the font icon code to \u

The code is as follows:

<template>
    <div class="login">
        <!--Header Search-->
       <div class="top">
           <div class="top-text iconfont">Guangzhou&#xe612;</div>
           <div class="top-btn">
               <input type="text" :placeholder="icon" class="iconfont">
           </div>
           <div class="top-x iconfont iconlingdang1"></div>
       </div>   
    </div>
</template>

<script>
    export default {
        name:"Login",
        data(){
           return {               
               icon:'\ue637 Please enter keywords'
           }
        }
    }
</script>

<style scoped>
    .login{
        width: 100%;
        height: 100%;
    }
    .top{
        width: 100%;
        height: 0.8rem;
        background-color: pink;
        display:flex;
        align-items: center;
        font-size:0.35rem;
    }
    .top-text{
        margin-left:0.3rem;
    }
    .top-btn{
        width: 4.8rem;
        height: 0.5rem;
        margin-left:0.2rem;
        margin-right:0.55rem;
    }
    .top-btn>input{
        width: 100%;
        height:0.5rem;
        border-radius:1rem;
        border:none;
        outline: none;
        padding-left:0.3rem;
    }
</style>

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 realizes the product magnifying glass effect
  • Example code of Vue3 encapsulated magnifying glass component
  • Vue3 realizes the image magnifying glass effect
  • Vue implements the magnifying glass function of the product details page
  • Vue implements the magnifying glass effect of tab switching
  • Vue implements a simple magnifying glass effect
  • Vue3.0 handwriting magnifying glass effect
  • Vue implements magnifying glass effect
  • A handwritten vue magnifying glass effect
  • Vue3 encapsulates the magnifying glass effect component of Jingdong product details page

<<:  Example code for using Nginx to implement 301 redirect to https root domain name

>>:  Detailed explanation of MySQL single table query operation examples [syntax, constraints, grouping, aggregation, filtering, sorting, etc.]

Recommend

JavaScript to dynamically load and delete tables

This article shares the specific code of JavaScri...

How to start a Java program in docker

Create a simple Spring boot web project Use the i...

Can MySQL's repeatable read level solve phantom reads?

introduction When I was learning more about datab...

Summary of Vue's cross-domain problem handling and solutions

When you send a network request, the following sa...

Some findings and thoughts about iframe

This story starts with an unexpected discovery tod...

Detailed steps to store emoji expressions in MySQL

Caused by: java.sql.SQLException: Incorrect strin...

Summary of situations where MySQL indexes will not be used

Types of Indexes in MySQL Generally, they can be ...

How to set the border of a web page table

<br />Previously, we learned how to set cell...

Core skills that web front-end development engineers need to master

The content involved in Web front-end development...

How to use CSS custom variables in Vue

Table of contents The CSS custom variable functio...

A brief analysis of MySQL cardinality statistics

1. What is the cardinality? Cardinality refers to...

HTML table tag tutorial (8): background image attribute BACKGROUND

Set a background image for the table. You can use...

An example of how to write a big sun weather icon in pure CSS

Effect The effect diagram is as follows Implement...

A brief discussion on whether CSS animation will be blocked by JS

The animation part of CSS will be blocked by JS, ...