搜索条的排版设计

<template>
<view class="search-container">
<image src="../../static/img/logo-small.jpg" class="logo"></image>
<view class="search-bar">
<icon type="search" size="16" class="search-icon"></icon>
<input type="text" placeholder="请输入关键字" class="search"
confirm-type="search" v-model="keyword" @confirm="handleSearch"/>
</view>
</view>
</template>
<script>
export default {
data() {
return {
keyword:null
}
},
methods: {
handleSearch:function(){
console.log(this.keyword);
}
}
}
</script>
<style lang="less">
@import url("index.less");
</style>