feat: 实现coze流的对话 第一次提交

This commit is contained in:
zoujing
2025-11-26 16:57:21 +08:00
commit 6cdd5279a3
19 changed files with 3208 additions and 0 deletions

15
vite.config.js Normal file
View File

@@ -0,0 +1,15 @@
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [
vue(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
},
},
})