You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
516 B
34 lines
516 B
<template>
|
|
<div class="search">
|
|
<van-search v-model="searchRef" placeholder="搜索" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
|
|
import {ref} from 'vue'
|
|
const searchRef = ref('')
|
|
|
|
</script>
|
|
|
|
<style lang="less">
|
|
.search{
|
|
padding-top:1rem
|
|
}
|
|
.van-search{
|
|
padding: 0;
|
|
}
|
|
.van-search__content{
|
|
border: 1px solid #ccc;
|
|
background-color: #fff;
|
|
height:1.85rem;
|
|
border-radius:0.2rem
|
|
}
|
|
.van-field__left-icon{
|
|
margin-right: var(--van-padding-base);
|
|
width: 45%;
|
|
padding-left: 40%;
|
|
}
|
|
|
|
|
|
</style>
|
|
|