fix: eslint jsdoc

pull/38/head
xingyu 2023-10-24 17:57:38 +08:00
parent d937c81931
commit 43dff1cdb3
6 changed files with 8 additions and 10 deletions

View File

@ -102,8 +102,8 @@ function setGlobalConfigState(formItem: IVFormComponent) {
/**
* 添加属性
* @param schemas
* @param index
* @param _formItems
* @param _index
*/
function handleAddAttrs(_formItems: IVFormComponent[], _index: number) {}
@ -187,7 +187,7 @@ function handleCopy(item: IVFormComponent = formConfig.value.currentItem as IVFo
/**
* 添加到表单中
* @param newIndex {object} 事件对象
* @param {newIndex} {object} 事件对象
* @param schemas {IVFormComponent[]} 表单项列表
* @param isCopy {boolean} 是否复制
*/

View File

@ -18,7 +18,6 @@ const { formConfig } = useFormDesignState()
/**
* 拖拽完成事件
* @param newIndex
*/
function addItem({ newIndex }: any) {
formConfig.value.schemas = formConfig.value.schemas || []
@ -77,8 +76,7 @@ const layoutTag = computed(() => {
.list-main {
display: flex;
flex-wrap: wrap;
align-content: flex-start;
justify-content: flex-start;
place-content: flex-start flex-start;
.layout-width {
width: 100%;

View File

@ -133,7 +133,7 @@ export const findFormItem: (
/**
* json
* @param formConfig {IFormConfig}
* @returns {IFormConfig}
* @returns {IFormConfig} copyFormConfig
*/
export function removeAttrs(formConfig: IFormConfig): IFormConfig {
const copyFormConfig = cloneDeep(formConfig)

View File

@ -43,7 +43,7 @@ export const useErrorLogStore = defineStore('app-error-log', {
/**
* Triggered after ajax request error
* @param error
* @returns
* @return addAjaxErrorInfo
*/
addAjaxErrorInfo(error) {
const { useErrorHandle } = projectSetting

View File

@ -154,7 +154,7 @@ export function withInstall<T extends CustomComponent>(component: T, alias?: str
*
* @param fn
* @param delay
* @returns {Function}
* @returns {Function} simpleDebounce
*/
export function simpleDebounce(fn, delay = 100) {
let timer: any | null = null

View File

@ -39,7 +39,7 @@ export interface Emitter<Events extends Record<EventType, unknown>> {
/**
* Mitt: Tiny (~200b) functional event emitter / pubsub.
* @name mitt
* @returns {Mitt}
* @returns {Mitt} mitt
*/
export function mitt<Events extends Record<EventType, unknown>>(
all?: EventHandlerMap<Events>,