24 lines
799 B
Vue
24 lines
799 B
Vue
<script setup lang="ts">
|
|
import { Search } from '@lucide/vue'
|
|
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'
|
|
</script>
|
|
|
|
<template>
|
|
<div class="h-full p-6 overflow-y-auto">
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle class="flex items-center gap-2">
|
|
<Search class="h-5 w-5 text-primary" />
|
|
文件搜索模块
|
|
</CardTitle>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<div class="flex flex-col items-center justify-center h-64 text-muted-foreground">
|
|
<Search class="h-16 w-16 mb-4 opacity-50" />
|
|
<p>文件搜索功能开发中...</p>
|
|
<p class="text-sm mt-2">支持快速搜索弹窗、文件搜索、应用程序搜索等功能</p>
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
</template> |