Vue + Element UI——搜索框DEMO
生活随笔
收集整理的這篇文章主要介紹了
Vue + Element UI——搜索框DEMO
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
源代碼?
<template><div style="display: inline-flex"><el-inputv-model="keyword":disabled="disabled":placeholder="placeholder"prefix-icon="el-icon-search"style="width: 350px;margin-right: 10px"clearable@clear="search"@keydown.enter.native="search"></el-input><el-button:disabled="disabled"icon="el-icon-search"type="primary"@click="search">搜索</el-button></div> </template><script>export default {name: "Search",props:{disabled:{type:Boolean,default:true},placeholder:{type:String,default: '請輸入昵稱進行搜索,可以直接回車搜索...'}},data(){return {keyword:''}},methods:{search(){this.$emit("search",['search',this.keyword])}}} </script><style scoped></style>運行結果
總結
以上是生活随笔為你收集整理的Vue + Element UI——搜索框DEMO的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: JavaScript——对象合并解决方案
- 下一篇: Visual C++——《可视化编程技术