const selectName = (type: string) => {
const types: any = {
a: 'a',
b: 'b',
c: 'c',
}
return types[type] || [];
}
vue返回内容
最新推荐文章于 2024-11-04 14:35:19 发布
该文章介绍了一个名为`selectName`的JavaScript函数,它接收一个字符串类型的参数type,并从对象types中返回对应键的值,如果type不在对象中,则返回默认值。
摘要由CSDN通过智能技术生成