TopSetting.vue 661 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <a-space size="large">
  3. <a-input :placeholder="$t('management.search')" style="width: 300px" allow-clear @input="handleSearch">
  4. <template #prefix>
  5. <icon-search />
  6. </template>
  7. </a-input>
  8. <a-button type="primary" size="large" @click="handleCreate">
  9. <template #icon>
  10. <icon-plus />
  11. </template>
  12. {{ $t('management.createIntelligent') }}
  13. </a-button>
  14. </a-space>
  15. </template>
  16. <script setup>
  17. // 搜索
  18. const handleSearch = () => {};
  19. // 创建智能体
  20. const handleCreate = () => {};
  21. </script>
  22. <style scoped lang="scss"></style>
  23. <style>
  24. .arco-input-wrapper {
  25. background-color: #fff;
  26. }
  27. </style>