docs: 文档更新 添加轮播图组件

- 引入vue3-carousel
- types抽离d.ts 需手动导入
This commit is contained in:
ZiuChen
2023-02-12 01:43:51 +08:00
parent f5bb372812
commit 1d3fb49d9c
17 changed files with 418 additions and 574 deletions

View File

@@ -0,0 +1,13 @@
export interface LinkItem {
content: string
target: string
}
export type LinkList = LinkItem[]
export interface ImgSliderItem {
src: string
alt?: string
}
export type ImgSliderList = ImgSliderItem[]