- 实现历史对话项的展示和操作菜单(重命名、删除) - 添加 AI 机器人 logo 和新对话图标 SVG 文件 - 引入 ant-design-vue 图标组件库,支持菜单操作图标 - 更新 IndexPage.vue 使用新的布局组件重构页面结构 - 移除原有聊天界面相关逻辑,简化首页展示内容- 添加底部提示文字"内容由 AI 生成,请仔细甄别"
26 lines
937 B
TypeScript
26 lines
937 B
TypeScript
/* eslint-disable */
|
|
// @ts-nocheck
|
|
// biome-ignore lint: disable
|
|
// oxlint-disable
|
|
// ------
|
|
// Generated by unplugin-vue-components
|
|
// Read more: https://github.com/vuejs/core/pull/3399
|
|
|
|
export {}
|
|
|
|
/* prettier-ignore */
|
|
declare module 'vue' {
|
|
export interface GlobalComponents {
|
|
AButton: typeof import('ant-design-vue/es')['Button']
|
|
ADropdown: typeof import('ant-design-vue/es')['Dropdown']
|
|
AMenu: typeof import('ant-design-vue/es')['Menu']
|
|
AMenuItem: typeof import('ant-design-vue/es')['MenuItem']
|
|
ATooltip: typeof import('ant-design-vue/es')['Tooltip']
|
|
RouterLink: typeof import('vue-router')['RouterLink']
|
|
RouterView: typeof import('vue-router')['RouterView']
|
|
SideBar: typeof import('./src/components/SideBar.vue')['default']
|
|
StreamMarkdownRender: typeof import('./src/components/StreamMarkdownRender.vue')['default']
|
|
SvgIcon: typeof import('./src/components/SvgIcon.vue')['default']
|
|
}
|
|
}
|