Vue project annotation specification

File comment specification

Single file annotation specification, each individual VUE file is commented at the beginning, indicating the file’s description, author, creation time, and so on.

<! -- * @filedescription: FileDescription * @author: Author * @date: file creation time * @lasteditors: last updated Author * @lastedittime: last updated -->Copy the code

Method annotation specification

 / * * *@description Method Description@param {parameter type} Parameter Name *@param {parameter type} Parameter Name *@return No return information write void/There is return information {return type} description */
Copy the code