UNPKG

hot-form

Version:

A project developed based on ant-design-vue and vant whitch do some things on create/render/modify and etc. for forms. Also can custom some component on the form items if you want. 一个基于antdv/vant开发的创建表单组件,包含表单渲染、表单编辑页面、以及植入自定义附加内容的组件

11 lines (9 loc) 324 B
// 检索字符串中是否满足子字符串 export function search(str, target) { return str.toLowerCase().search(target) !== -1; } // 区分视频、音频等文件格式 export function distinguishMedia(type) { if (search(type, 'video/*')) return 'video'; if (search(type, 'audio/*')) return 'audio'; }