Files
Yi.Admin/Yi.Vue/src/layouts/default/widgets/Search.vue

32 lines
539 B
Vue
Raw Normal View History

2021-10-11 15:45:59 +08:00
<template>
<v-text-field
2021-10-16 15:18:41 +08:00
placeholder="全站搜索"
2021-10-11 15:45:59 +08:00
class="mr-16"
color="secondary"
hide-details
2021-10-16 15:18:41 +08:00
style="max-width: 400px"
2021-10-11 15:45:59 +08:00
>
<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>