| 12345678910111213141516171819202122232425262728 |
- <template>
- <a-space size="large">
- <a-input :placeholder="$t('management.search')" style="width: 300px" allow-clear @input="handleSearch">
- <template #prefix>
- <icon-search />
- </template>
- </a-input>
- <a-button type="primary" size="large" @click="handleCreate">
- <template #icon>
- <icon-plus />
- </template>
- {{ $t('management.createIntelligent') }}
- </a-button>
- </a-space>
- </template>
- <script setup>
- // 搜索
- const handleSearch = () => {};
- // 创建智能体
- const handleCreate = () => {};
- </script>
- <style scoped lang="scss"></style>
- <style>
- .arco-input-wrapper {
- background-color: #fff;
- }
- </style>
|