如果我的html5组件/webcomponent具有定义 <template>
的 component.html
文件,那么在 component.html
中使用 <!DOCTYPE html>
声明是有意义的吗?也就是说,以下哪项是最佳实践?
<template>
<!-- some html content -->
</template>
或
<!DOCTYPE html>
<template>
<!-- some html content -->
</template>
在所有支持template
元素的现代浏览器中,两者都会通过相同的方式进行解析和处理。
一个八个八分一!
因此,这取决于您是否希望速度超过严格的标准合规性
遵循亲吻原则:我写的代码越少,我感觉越好; - )