- filled: 默认带有填充色和下划线。
- outlined: 完整外边框,无下划线。
- plain: 无边框和下划线。
- underlined: 只有下划线。
- solo: 单线风格,带背景填充和下划线。
- solo-inverted: 反转的 solo 风格,适合深色背景。
<template>
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" />
<v-container>
<v-text-field variant="outlined" append-icon="md:search" label="搜索" rounded class="no-underline">
<template #append-inner>
<span class="material-symbols-outlined">
search
</span>
</template>
</v-text-field>
</v-container>
</template>
效果: