This commit is contained in:
Sun
2023-11-08 21:53:07 +08:00
commit 211c3071dc
245 changed files with 39293 additions and 0 deletions
@@ -0,0 +1,23 @@
<script setup lang="ts">
import { NInput } from 'naive-ui'
import { SvgIcon } from '@/components/common'
</script>
<template>
<div class="w-full">
<NInput size="large" class="background" round placeholder="输入搜索内容">
<template #prefix>
百度
</template>
<template #suffix>
<SvgIcon icon="iconamoon:search-fill" />
</template>
</NInput>
</div>
</template>
<style scoped>
.background{
background-color: #ffffff78;
}
</style>