Files
Yi.Admin/Yi.Vue/src/layouts/default/widgets/Search.vue
2021-10-16 15:18:41 +08:00

32 lines
539 B
Vue

<template>
<v-text-field
placeholder="全站搜索"
class="mr-16"
color="secondary"
hide-details
style="max-width: 400px"
>
<template
v-if="$vuetify.breakpoint.mdAndUp"
v-slot:append-outer
>
<v-btn
class="mt-n2 ml-n2"
fab
small
elevation="2"
height="44"
width="44"
>
<v-icon>mdi-magnify</v-icon>
</v-btn>
</template>
</v-text-field>
</template>
<script>
export default {
name: 'DefaultSearch',
}
</script>