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 code is as follows: <template> <div class="login"> <!--Header Search--> <div class="top"> <div class="top-text iconfont">Guangzhou</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:
|
<<: Example code for using Nginx to implement 301 redirect to https root domain name
Overview: The filesystem module is a simple wrapp...
Index definition: It is a separate database struc...
Because what I wrote before was not detailed enou...
Table of contents Dockerfile pom.xml Jenkins Conf...
Through the study and application of Node, we kno...
1. Phenomenon In the early morning, an index was ...
Table of contents Preface Problem Description Cau...
Table of contents Environmental conditions Errors...
Table of contents Preface 1. scp usage 2. Use sft...
In the previous blog, we talked about using Nginx...
1 Download the MySQL 5.6 version compressed packa...
Common scenarios for Nginx forwarding socket port...
Let's try out nginx's reverse proxy here....
Preface Yesterday, there was a project that requi...
Let's make a simple 3D Rubik's Cube today...