如何在Vuetify文件中创建搜索栏?

问题描述 投票:-2回答:1

我有兴趣在我的网站中心创建一个外观漂亮的搜索栏。我使用Vuetify来创建我的网站,但对如何创建美观的搜索栏一无所知。This is the center of my website and I want to create a search box in the place of the 'login' line

search formatting vuetify.js
1个回答
0
投票

您可以使用此

<v-text-field
   placeholder="Login"
   :clearable='true'
   prepend-inner-icon="mdi-code-braces"
   class="font-regular font-weight-light mb-n4"
   v-model="search"
></v-text-field>
© www.soinside.com 2019 - 2024. All rights reserved.