EmptySearchResult.vue 196 B

12345678910111213
  1. <script setup lang="ts">
  2. defineProps({
  3. keyword: {
  4. type: String,
  5. required: true
  6. }
  7. });
  8. </script>
  9. <template>
  10. <div>没有找到关键词 {{ keyword }} 的搜索结果</div>
  11. </template>