zss
4 天以前 bd7d4f9e1c7e09723d9eb35be324545d66718b2a
1
2
3
4
5
6
7
8
9
10
<template>
  <AIChatSidebar :assistants="assistants" default-assistant="purchase" />
</template>
 
<script setup>
import AIChatSidebar from '@/components/AIChatSidebar/index.vue'
import { purchaseAssistant } from '@/components/AIChatSidebar/assistants'
 
const assistants = [purchaseAssistant]
</script>