Record-21-02


js 装饰器语法

@babel/plugin-proposal-decorators

  • package.json

    npm install --save-dev @babel/plugin-proposal-decorators
  • .babelrc

    
    "plugins": [
      ["@babel/plugin-proposal-decorators", { "legacy": true }]
    ]

jsDoc 注释

/**
 * Represents a book.
 * @constructor
 * @param {string} title - The title of the book.
 * @param {string} author - The author of the book.
 */
function Book(title, author) {}

jsDoc

滚动条穿透

jsDoc


Author: yanstars
Reprint policy: All articles in this blog are used except for special statements CC BY 4.0 reprint policy. If reproduced, please indicate source yanstars !
  TOC