From 6a06c230ad45b4ee19cbfba0ccb76b72aa18037b Mon Sep 17 00:00:00 2001 From: "PL196\\40380" <403802162@qq.com> Date: Sun, 18 Aug 2024 17:43:09 +0800 Subject: [PATCH] 1 --- 404.html | 4 ++-- components/button.html | 4 ++-- components/checkbox.html | 4 ++-- components/dialog.html | 4 ++-- components/icon.html | 4 ++-- components/image.html | 4 ++-- components/imgCaptcha.html | 4 ++-- components/input.html | 4 ++-- components/message.html | 4 ++-- components/popover.html | 4 ++-- components/prompt.html | 4 ++-- components/select.html | 4 ++-- components/tag.html | 4 ++-- functions/arrayUtil.html | 4 ++-- functions/extend.html | 4 ++-- functions/is.html | 4 ++-- functions/onClickOutside.html | 4 ++-- functions/stringUtil.html | 4 ++-- functions/unrefElement.html | 4 ++-- functions/useDebounceFn.html | 4 ++-- functions/useEventListener.html | 4 ++-- functions/useResizeObserver.html | 4 ++-- functions/useSubmitFn.html | 4 ++-- functions/useThrottleFn.html | 4 ++-- guide/dark.html | 4 ++-- guide/i18n.html | 4 ++-- guide/installation.html | 4 ++-- guide/quickstart.html | 4 ++-- guide/theming.html | 4 ++-- hashmap.json | 2 +- index.html | 4 ++-- 31 files changed, 61 insertions(+), 61 deletions(-) diff --git a/404.html b/404.html index cad6548..fd20d38 100644 --- a/404.html +++ b/404.html @@ -10,14 +10,14 @@ - +
Skip to content

404

PAGE NOT FOUND

But if you don't change your direction, and if you keep looking, you may end up where you are heading.
- + \ No newline at end of file diff --git a/components/button.html b/components/button.html index 1f5612e..83ffe21 100644 --- a/components/button.html +++ b/components/button.html @@ -21,14 +21,14 @@ - +
Skip to content

Button 按钮

按钮用来触发一些操作。

基础用法

禁用状态

加载状态按钮

点击按钮来加载数据,并向用户反馈加载状态。

通过设置 loading 属性为 true 来显示加载中状态。

TIP

您可以使用 loading 插槽自定义您的loading图标

尺寸

API

Button props

属性名说明类型默认值
tag自定义元素标签string/ Componentbutton
type类型primary success warning danger
plain是否为次要按钮booleanfalse
ghost幽灵属性,使按钮背景透明booleanfalse
size按钮大小large default smalldefault
width按钮的宽度string/ number
disabled按钮失效状态booleanfalse
loading设置按钮载入状态booleanfalse
wave是否需要波浪动效booleantrue
- + \ No newline at end of file diff --git a/components/checkbox.html b/components/checkbox.html index a1ec849..59eb91b 100644 --- a/components/checkbox.html +++ b/components/checkbox.html @@ -21,14 +21,14 @@ - +
Skip to content

Checkbox 多选框

多选框。

基础用法

Checkbox 组

全选

API

Checkbox props

属性名说明类型默认值
model-value / v-model选中项绑定值boolean string number
label选中状态的值boolean string number
tag复选框组元素标签stringlabel
nameCheckboxGroup 下所有 input[type="checkbox"] 的 name 属性string
indeterminate设置不确定状态,仅负责样式控制booleanfalse
disabled是否禁用booleanfalse
wave是否需要点击波浪效果booleantrue

Checkbox Events

属性名说明类型
change当绑定值变化时触发的事件Function(e: any) => void

Slots

插槽名说明
default自定义默认内容
- + \ No newline at end of file diff --git a/components/dialog.html b/components/dialog.html index 4d29fd9..cd31072 100644 --- a/components/dialog.html +++ b/components/dialog.html @@ -21,14 +21,14 @@ - +
Skip to content

Dialog 对话框

需要用户处理事务,又不希望跳转页面以致打断工作流程时,可以使用 Dialog 在当前页面正中打开一个浮层,承载相应的操作。

基础用法

居中对话框

设置 align-center 为 true 使对话框水平垂直居中。

API

Dialog props

属性名说明类型默认值
open(v-model)对话框是否可见booleanfalse
width对话框的宽度string/ number50%
topdialog CSS 中的 margin-top 值,默认为 15vhstring
alignCenter是否水平垂直对齐对话框booleanfalse
modal是否需要遮罩层booleantrue
closeOnClickModal点击蒙层是否可以关闭booleanfalse
showClose是否显示关闭按钮booleantrue
title弹窗标题string
zIndex和原生的 CSS 的 z-index 相同,改变 z 轴的顺序number
overlayClass遮罩的自定义类名string
lockScroll否在 Dialog 出现时将 body 滚动锁定booleantrue
appendTo默认给弹窗挂到哪个地方:了解teleport内置组件属性stringbody
beforeClose关闭前的回调,会暂停 Dialog 的关闭. 回调函数内执行 done 参数方法的时候才是真正关闭对话框的时候Function

Dialog Events

属性名说明类型
close弹窗关闭时事件Function() => void

Slots

插槽名说明
-Dialog 的内容
header对话框标题的内容
footerDialog 按钮操作区的内容
- + \ No newline at end of file diff --git a/components/icon.html b/components/icon.html index ad16bdd..13d67c3 100644 --- a/components/icon.html +++ b/components/icon.html @@ -21,7 +21,7 @@ - + @@ -75,7 +75,7 @@ </svg> </Icon> </template> - + \ No newline at end of file diff --git a/components/image.html b/components/image.html index 3e5984e..ed4d351 100644 --- a/components/image.html +++ b/components/image.html @@ -21,14 +21,14 @@ - +
Skip to content

Image 图片

可预览的图片。

基础用法

懒加载

图片预览

相册模式(todo)

API

Image props

属性名说明类型默认值
src图片源地址,同原生属性一致string
alt原生属性 altstring
linkUrla链接地址(传递就代表是链接图片)string
width图片宽度string/ number
height图片高度string/ number
lazy是否需要懒加载功能, 如果开启了这个,我们建议传递一个宽度,高度进来。因为占位节点需要booleanfalse
preview是否可以预览booleanfalse
fit同原生 object-fitstring

Image Events

属性名说明类型
load图片加载成功触发Function(e: any) => void
error图片加载失败触发Function(e: any) => void

Slots

插槽名说明
placeholder当图像尚未加载时,自定义的占位符内容
error自定义图像加载失败的内容
- + \ No newline at end of file diff --git a/components/imgCaptcha.html b/components/imgCaptcha.html index 6842c0a..50971b2 100644 --- a/components/imgCaptcha.html +++ b/components/imgCaptcha.html @@ -21,14 +21,14 @@ - +
Skip to content

ImgCaptcha 图文验证码

常用于表单需要输入验证码,在做下一步事情。

基础用法

传入一个(width非必须,height非必须)就生成一个图文验证器。

配合输入框使用验证器

API

ImgCaptcha props

属性名说明类型默认值
size验证码的长度number4
width宽度number95
height高度number38
type类型blend number letternumber

ImgCaptcha defineExpose

名称说明类型
validate获取校验结果Function
- + \ No newline at end of file diff --git a/components/input.html b/components/input.html index 052eb0d..c2c5b90 100644 --- a/components/input.html +++ b/components/input.html @@ -21,14 +21,14 @@ - +
Skip to content

Input 输入框

输入框允许用户在 UI 中输入文本, 它们通常出现在表单和对话框中

基础用法

禁用状态

限制输入格式

前缀和后缀

带标签的

在输入框上添加前缀或后缀标签,需要自己写一点点代码

文本域

尺寸

API

Input props

属性名说明类型默认值
model-value / v-model输入框内容string/ number
placeholder占位符string请输入
clearable可以点击清除图标删除内容booleanfalse
disabled是否禁用booleanfalse
readonly是否只读booleanfalse
inputStyleinput 元素或 textarea 元素的 styleCSSProperties
autofocus是否自动获取焦点booleanfalse
maxlength最大输入长度number
size大小large default smalldefault
type类型原生 input 类型 | textareastringtext
allowInput校验当前的输入是否合法,如果返回 false 输入框便不会响应此次的输入Function(value: string) => boolean

Input Events

属性名说明类型
change仅当 modelValue 改变时,当输入框失去焦点或用户按Enter时触发Function
inputInput 值改变时触发Function
blur当选择器的输入框失去焦点时触发Function
focus当选择器的输入框获得焦点时触发Function

Input defineExpose

名称说明类型
blur使 input 失去焦点Function
focus使 input 获取焦点Function
clear清除 input 值Function
refHTML元素 input 或 textareaobject

Slots

插槽名说明
prefix设置前置标签,只对非 type="textarea" 有效
suffix设置后置标签,只对非 type="textarea" 有效
- + \ No newline at end of file diff --git a/components/message.html b/components/message.html index 6d3f158..974ef45 100644 --- a/components/message.html +++ b/components/message.html @@ -21,14 +21,14 @@ - +
Skip to content

Message 消息提示

全局展示操作反馈信息

基础用法

可关闭提示

TIP

Message 拥有可控的 duration, 默认的关闭时间为 3000 毫秒,当把这个属性的值设置为0便表示该消息不会被自动关闭。

HTML 片段内容

全局方法

已经在app.config.globalProperties 添加了全局方法 $message。 在 vue 实例中你可以使用当前页面中的调用方式调用 Message

API

Message props

属性名说明类型默认值
type消息类型info success warning error
message消息文本string
duration显示时间,单位为毫秒。 设为 0 则不会自动关闭number3000
isHtml是否将 message 属性作为 HTML 片段处理booleanfalse
showClose是否显示关闭按钮booleanfalse
icon自定义图标组件Component/ string
zIndex层级number500
offset距离窗口顶部的偏移量number20

Message defineExpose

名称说明类型
closeAll关闭所有消息Function(e: any) => void
- + \ No newline at end of file diff --git a/components/popover.html b/components/popover.html index c294f12..c9b3b1a 100644 --- a/components/popover.html +++ b/components/popover.html @@ -21,14 +21,14 @@ - +
Skip to content

Popover 气泡卡片

  1. 点击元素,弹出气泡式框。
  2. 高扩展性的气泡卡片。

基础用法

位置

主题

API

Popover props

属性名说明类型默认值
trigger触发方式hover click
persistent设置为 false 时, Popper会根据open的值动态添加 删除节点, 否则它只是被隐藏了booleantrue
offset出现位置的偏移量number6
placement出现的位置stringbottom
strategy描述要使用的定位策略。默认情况下,它是absolutestringabsolute
visible受控模式,来控制它的显示与关闭boolean
hideAfterTime消失的延迟,以毫秒为单位(这个的意义主要是延迟切换,不然hover到下拉菜单节点时,菜单就影藏了)number200
showAfterTime出现延迟,以毫秒为单位number0
transition动画名称string
disabled是否禁止booleanfalse
popperClasspopper 添加类名string
popperStylepopper添加stylevue“StyleValue”
zIndexpopper层级number
getPopupContainer菜单挂载的节点。默认挂载body上, 方法参数是当前触发器节点;如果想挂载到触发器节点下,可以返回这个node参数Function(node:HTMLElement) => void

Popover Events

属性名说明类型
hidepopup消失时触发Function
showpopup显示时触发Function

Popover defineExpose

名称说明类型
popperReffb-popper 组件实例object
onOpenonOpen 方法控制显示状态Function
onCloseonClose 方法控制显示状态, 可以传递一个time来覆盖hideAfterTime,为0时立马关闭弹窗Function(time) => void
updatePopper使用popperRef.contentRef.updatePopper()更新位置Function

Slots

插槽名说明
default触发 & 引用的元素
popup对话框标题的内容
- + \ No newline at end of file diff --git a/components/prompt.html b/components/prompt.html index 86d0e0e..49d2a70 100644 --- a/components/prompt.html +++ b/components/prompt.html @@ -21,7 +21,7 @@ - + @@ -70,7 +70,7 @@ </template> </fb-prompt> </template>

全局方法

已经在app.config.globalProperties 添加了全局方法 $prompt。 在 vue 实例中你可以使用当前页面中的调用方式调用 Prompt

API

Prompt props

属性名说明类型默认值
open(v-model)对话框是否可见booleanfalse
width对话框的宽度string/ number440px
showClose是否显示关闭按钮booleantrue
title标题string
showIcon是否显示 标题的 icon图标booleantrue
okText确认按钮的文字string确认
cancelText取消按钮的文字string取消
content内容string

Prompt Events

属性名说明类型
onOk确认按钮事件Function() => void
onCancel点击了取消按钮Function(e) => void
- + \ No newline at end of file diff --git a/components/select.html b/components/select.html index b60cb9c..1ad62b6 100644 --- a/components/select.html +++ b/components/select.html @@ -21,14 +21,14 @@ - +
Skip to content

Select 选择器

选择组件用于从选项列表中收集用户提供的信息

基础用法

菜单位于其发光元素下方,除非它们靠近视口的底部。

自定义菜单项

多选

多选时使用 tag 组件来展示已选中的选项。当然你可以配置presentMode="text"来用文本方式呈现

尺寸

TIP

  1. 除了默认的大小, 可使用 largesmall两种值。
  2. 此外你还可以配置clearable来达到可以清空值。
  3. 你还可以设置disabled来禁用select

筛选选项

可以利用筛选功能快速查找选项。

远程搜索

自定义触发器

你可以自定义触发器,来实现文本选择模式

API

Select props

属性名说明类型默认值
model-value / v-model选中项绑定值string/ number/ array
placeholder占位符string请选择
clearable是否可以清空选项booleanfalse
disabled是否禁用booleanfalse
multiple是否多选booleanfalse
dropdownStyle下拉菜单的 style 属性CSSProperties
transition下拉菜单的动画name(遵循vuejs transition内置组件的name)string
placement下拉菜单弹出位置top top-start top-end bottom bottom-start bottom-endbottom
trigger触发方式hover clickclick
isTriggerPopup是否把菜单挂载到触发器节点下,默认挂载在body节点下booleanfalse
suffixIcon自定义后缀图标组件string/ Component
clearIcon自定义清除图标组件string/ Component
size大小large default smalldefault
reserveKeyword当 multiple 和 filterable被设置为 true 时,是否在选中一个选项后保留当前的搜索关键词booleantrue
multipleLimit最大选择数量 0为不限制number0
filterable组件是否可筛选booleanfalse
presentMode多选时的呈现方法,默认为tag,如果是tag,选择多了会换行tag texttag
filterMethod自定义筛选方法Function
remoteMethod自定义远程搜索方法Function
loading是否正在从远程获取数据booleanfalse
loadingText从服务器加载数据时显示的文本stringLoading
remote其中的选项是否从服务器远程加载booleanfalse
noMatchText搜索条件无匹配时显示的文字,也可以使用 empty 插槽设置string
noDataText无选项时显示的文字,也可以使用 empty 插槽设置自定义内容string

Select Events

属性名说明类型
change选中值发生变化时触发Function(value: any) => void
focus当 input 获得焦点时触发Function(e: any) => void
blur当 input 失去焦点时触发Function(e: any) => void
visible-change下拉框出现/隐藏时触发Function(value: boolean) => void
remove-tag多选模式下移除tag时触发Function(value: any) => void

Select Slots

插槽名说明参数
defaultoption 组件列表
header下拉列表顶部的内容
footer下拉列表底部的内容
empty无选项时的内容
loading自定义loading时的内容
trigger自定义触发器节点{selectedLabel: 选中的值,当没选择时,这个值是placeholder} 作用域插槽

Option props

属性名说明类型默认值
value选中项绑定值string/ number
label选项上的标签string
disabled是否禁用booleanfalse

Option Slots

插槽名说明
default默认插槽内容
- + \ No newline at end of file diff --git a/components/tag.html b/components/tag.html index 7182a60..c9d38e7 100644 --- a/components/tag.html +++ b/components/tag.html @@ -21,14 +21,14 @@ - +
Skip to content

Tag 标签

进行标记和分类的小标签。

基础用法

可删除标签

风格

带图标的

API

Tag props

属性名说明类型默认值
typeTag 的类型success warning danger info """"
closable是否可关闭booleanfalse
color自定义背景色string
sizeTag 的尺寸large default smalldefault
effectTag 的风格dark light plainlight
roundTag 是否为圆形booleanfalse

Tag Events

属性名说明类型
click点击 Tag 时触发的事件Function(e: any) => void
close关闭 Tag 时触发的事件Function(e: any) => void

Slots

插槽名说明
default自定义默认内容
icon设置Icon
- + \ No newline at end of file diff --git a/functions/arrayUtil.html b/functions/arrayUtil.html index 98856aa..b672787 100644 --- a/functions/arrayUtil.html +++ b/functions/arrayUtil.html @@ -21,7 +21,7 @@ - + @@ -80,7 +80,7 @@ const rows = getTreeByRow(data, "3"); // => row - + \ No newline at end of file diff --git a/functions/extend.html b/functions/extend.html index 3b10ca9..8d2a8b2 100644 --- a/functions/extend.html +++ b/functions/extend.html @@ -21,14 +21,14 @@ - +
Skip to content

扩展🎉🎉🎉😎😎

常用的vue hooks, js 工具集

- + \ No newline at end of file diff --git a/functions/is.html b/functions/is.html index 1801e99..2b0bcf0 100644 --- a/functions/is.html +++ b/functions/is.html @@ -21,7 +21,7 @@ - + @@ -69,7 +69,7 @@ * 也许它是一个ref,一个普通值,或者一个getter函数 */ export type MaybeRefOrGetter<T> = MaybeRef<T> | (() => T); - + \ No newline at end of file diff --git a/functions/onClickOutside.html b/functions/onClickOutside.html index 162647c..b3880ca 100644 --- a/functions/onClickOutside.html +++ b/functions/onClickOutside.html @@ -21,7 +21,7 @@ - + @@ -40,7 +40,7 @@ <div ref="target">Hello world</div> <div>Outside element</div> </template> - + \ No newline at end of file diff --git a/functions/stringUtil.html b/functions/stringUtil.html index 63cf8ad..ef6fb75 100644 --- a/functions/stringUtil.html +++ b/functions/stringUtil.html @@ -21,7 +21,7 @@ - + @@ -37,7 +37,7 @@ console.log(str); console.log(str2); console.log(str3); - + \ No newline at end of file diff --git a/functions/unrefElement.html b/functions/unrefElement.html index ffc8315..abd3065 100644 --- a/functions/unrefElement.html +++ b/functions/unrefElement.html @@ -21,7 +21,7 @@ - + @@ -44,7 +44,7 @@ <div ref="div" /> <HelloWorld ref="hello" /> </template> - + \ No newline at end of file diff --git a/functions/useDebounceFn.html b/functions/useDebounceFn.html index 3fac271..f41204e 100644 --- a/functions/useDebounceFn.html +++ b/functions/useDebounceFn.html @@ -21,7 +21,7 @@ - + @@ -36,7 +36,7 @@ }, 1000) window.addEventListener('resize', debouncedFn) - + \ No newline at end of file diff --git a/functions/useEventListener.html b/functions/useEventListener.html index f2d9916..d18168e 100644 --- a/functions/useEventListener.html +++ b/functions/useEventListener.html @@ -21,7 +21,7 @@ - + @@ -44,7 +44,7 @@ }); cleanup(); // 这将注销侦听器. - + \ No newline at end of file diff --git a/functions/useResizeObserver.html b/functions/useResizeObserver.html index 3569ddf..1990a6f 100644 --- a/functions/useResizeObserver.html +++ b/functions/useResizeObserver.html @@ -21,7 +21,7 @@ - + @@ -48,7 +48,7 @@ <textarea ref="el" class="resizer" disabled v-text="text" /> </div> </template> - + \ No newline at end of file diff --git a/functions/useSubmitFn.html b/functions/useSubmitFn.html index af4431e..d5cebe0 100644 --- a/functions/useSubmitFn.html +++ b/functions/useSubmitFn.html @@ -21,7 +21,7 @@ - + @@ -59,7 +59,7 @@ }); }, 1000); // 这样就是一个3秒的时间 - + \ No newline at end of file diff --git a/functions/useThrottleFn.html b/functions/useThrottleFn.html index 72d174f..6602c4d 100644 --- a/functions/useThrottleFn.html +++ b/functions/useThrottleFn.html @@ -21,7 +21,7 @@ - + @@ -50,7 +50,7 @@ <p>调用的事件处理程序: {{ updated }}</p> </div> </template> - + \ No newline at end of file diff --git a/guide/dark.html b/guide/dark.html index dd17bfa..b311bb6 100644 --- a/guide/dark.html +++ b/guide/dark.html @@ -21,7 +21,7 @@ - + @@ -34,7 +34,7 @@ </html>

只需要如下在项目入口文件修改一行代码:

ts
// main.ts
 // 如果只想导入css变量
 import "fish-bubble-design/dist/dark-vars.css";
- + \ No newline at end of file diff --git a/guide/i18n.html b/guide/i18n.html index 68bf8bd..d56c823 100644 --- a/guide/i18n.html +++ b/guide/i18n.html @@ -21,14 +21,14 @@ - +
Skip to content

国际化

fish-bubble-design暂不支持国际化

- + \ No newline at end of file diff --git a/guide/installation.html b/guide/installation.html index 1f97c73..d991bdc 100644 --- a/guide/installation.html +++ b/guide/installation.html @@ -21,7 +21,7 @@ - + @@ -42,7 +42,7 @@ <!-- Import component library --> <script src="//unpkg.com/fish-bubble-design"></script> </head>

如何贡献

如果你希望参与贡献,欢迎 Pull Request,或给我们 报告 Bug

- + \ No newline at end of file diff --git a/guide/quickstart.html b/guide/quickstart.html index 12d9a7a..5bc981f 100644 --- a/guide/quickstart.html +++ b/guide/quickstart.html @@ -21,7 +21,7 @@ - + @@ -61,7 +61,7 @@ {"typeRoots": ["./typings"]} } } - + \ No newline at end of file diff --git a/guide/theming.html b/guide/theming.html index 0655c1b..fa8b2a1 100644 --- a/guide/theming.html +++ b/guide/theming.html @@ -21,7 +21,7 @@ - + @@ -53,7 +53,7 @@ // 设置 css 变量 el.style.setProperty("--fb-color-primary", "red"); - + \ No newline at end of file diff --git a/hashmap.json b/hashmap.json index fa6310e..48a8b0d 100644 --- a/hashmap.json +++ b/hashmap.json @@ -1 +1 @@ -{"components_image.md":"ARvfxxpH","components_input.md":"HyR86aPH","guide_i18n.md":"Yn2Tahnr","guide_dark.md":"6tdR4UUi","components_imgcaptcha.md":"KRu6Pkzn","components_icon.md":"mqiJ_9p8","functions_usethrottlefn.md":"IQlES9f2","functions_stringutil.md":"zEnbsC8l","components_button.md":"ALsrEAic","functions_is.md":"mpMG0mxF","components_dialog.md":"ZkB41dC4","functions_useresizeobserver.md":"Wp3gGR06","components_tag.md":"rvpIx4-8","index.md":"5YyRVKES","functions_usesubmitfn.md":"uoaIDHBi","functions_useeventlistener.md":"HnH8770J","guide_quickstart.md":"vX2XQBsH","components_checkbox.md":"N7-ouhP_","functions_arrayutil.md":"IHI7Lmov","guide_theming.md":"4gQOU-Rc","functions_usedebouncefn.md":"dKsRGKSA","components_prompt.md":"j-a2vFtA","guide_installation.md":"ejE7XaRg","functions_unrefelement.md":"qyyj2EBe","components_message.md":"J6ZT7pZe","components_select.md":"FSlx50hx","functions_extend.md":"j6QCMZPC","components_popover.md":"vUtPpNJS","functions_onclickoutside.md":"OmvbTFyn"} +{"functions_unrefelement.md":"qyyj2EBe","components_icon.md":"mqiJ_9p8","components_message.md":"J6ZT7pZe","components_image.md":"ARvfxxpH","functions_arrayutil.md":"IHI7Lmov","index.md":"5YyRVKES","components_imgcaptcha.md":"KRu6Pkzn","components_checkbox.md":"N7-ouhP_","functions_onclickoutside.md":"OmvbTFyn","functions_usesubmitfn.md":"uoaIDHBi","guide_installation.md":"ejE7XaRg","functions_stringutil.md":"zEnbsC8l","guide_quickstart.md":"vX2XQBsH","guide_dark.md":"6tdR4UUi","components_prompt.md":"j-a2vFtA","components_dialog.md":"ZkB41dC4","components_button.md":"ALsrEAic","functions_is.md":"mpMG0mxF","functions_extend.md":"j6QCMZPC","components_tag.md":"rvpIx4-8","guide_theming.md":"4gQOU-Rc","functions_usedebouncefn.md":"dKsRGKSA","guide_i18n.md":"Yn2Tahnr","functions_useresizeobserver.md":"Wp3gGR06","components_input.md":"HyR86aPH","functions_usethrottlefn.md":"IQlES9f2","functions_useeventlistener.md":"HnH8770J","components_select.md":"FSlx50hx","components_popover.md":"vUtPpNJS"} diff --git a/index.html b/index.html index daf80ee..212a026 100644 --- a/index.html +++ b/index.html @@ -21,14 +21,14 @@ - +
Skip to content

Fish Bubble

为开发人员准备的基于Vue 3.0的桌面组件库

四大利器,为您保驾护航

  • 文档

    我们全面覆盖了 fish-bubble 的各个方面,为开发者提供明确的方向指导和深入的设计理念,旨在启发您的洞见,让您的开发之路如马踏平川般顺畅。

  • 组件

    我们的目标是以精简的代码实现功能,追求代码的简洁性和效率。

  • 工具库

    众多的精致小工具,宛如开发过程中的得力助手,随召随到,让您掌握神奇的飞镖,精准命中百步之外的目标。

  • 布局

    我们汇集了大量常用页面和布局,旨在减轻开发者的重复负担,让您得以专心于逻辑的构建,以更少的努力实现更大的成效。

Copyright 2024 Fish Bubble | 蜀ICP备2020025971号-1

- + \ No newline at end of file