Home>Article>Web Front-end> Can comments be written in .vue files?
Vue files can write comments; within each code block, when commenting, you need to use the comment syntax of the respective language to comment; for example, when commenting at the top of the file, use the HTML comment syntax " "That's it.
The operating environment of this tutorial: Windows 7 system, vue version 2.0, DELL G3 computer.
[Related article recommendations:vue.js]
Can comments be written on vue files?
Comments can be written in vue files. Within each code block, when commenting, you need to use the comment syntax of the respective language to comment (HTML, CSS, JavaScript, Jade, etc.). When commenting at the top of the file, use HTML comment syntax: a1e846e189c356a0aa736877d7068fa1.
html Comment:
pug(html) Comment:
// 单行注释 //- 不输出的单行注释 div // 块注释,下级的内容都会被注释掉 随便写多少字 都没关系。
stylus(css) Comment:
// 单行注释 /* 多行注释 只有在compress选项未启用的时候才会被输出 */ /*! 多行缓冲注释 告诉Stylus压缩的时候这段直接输出 */
js Comment:
// 单行注释 /* 多行注释 多行注释 */ var a = 'abc'; // 行末注释
xml Note:
There is only one type.
The above is the detailed content of Can comments be written in .vue files?. For more information, please follow other related articles on the PHP Chinese website!