如果我有一个 HTML5 组件/WebComponent 的component.html
文件定义了 a ,那么在 中声明<template>
是否有意义?也就是说,以下哪个是最佳实践?<!DOCTYPE html>
component.html
<template>
<!-- some html content -->
</template>
或者
<!DOCTYPE html>
<template>
<!-- some html content -->
</template>