docs(plugin-enums): get has two optional parameters

This commit is contained in:
Nex Zhu 2021-12-27 10:19:50 +08:00
parent 86888e1887
commit 6090e3e347

View File

@ -10,14 +10,14 @@ Object.keys(_ENUMS).forEach(key => {
/**
* 获取枚举键值如不传key则返回name的枚举数组
* @param {string} name 枚举名称
* @param {string} key 枚举键名称
* @param {string} [key] 枚举键名称
* @param {{
* dir: string
* extend: Array<{
* key:string
* dir:string
* transfer: Function
* }>}} opt 配置项
* }>}} [opt] 配置项
*/
function get(name, key, opt = { dir: 'value', extend: []}) {
if (Object.prototype.toString.call(key) === '[object Object]') {