Appearance
必须使用闭合标签
这样可以保证HTML标签的完整性和代码的清晰。
确保每个开始标签都有对应的结束标签。
<template> <div> <p> </template>
<template> <div></div> <p></p> </template>