mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-20 00:16:37 +08:00
32 lines
539 B
Vue
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>
|