Ctrl+P
Vue Pro Comment 是一款专为前端开发者设计的智能 JSDoc 注释生成器。它能够自动解析函数逻辑,精准推断参数类型与返回值。
String
Number
Boolean
{Object}
async
Promise<T>
const func = (params) => {}
Tab
输入:
const handleData = async (id: number, options = {}) => { return { status: 200 }; }