//原写法
<page-head :title="lang.mainTitle" :showHome="false" :showSearch="false"></page-head>
//改正之后的写法
<page-head :title="lang.mainTitle" :show-home="false" :show-search="false"></page-head>

总结:HTML 中的 attribute 名是大小写不敏感的,所以浏览器会把所有大写字符解释为小写字符。这意味着当你使用 DOM 中的模板时,camelCase (驼峰命名法) 的 prop 名需要使用其等价的 kebab-case (短横线分隔命名) 命名

Logo

前往低代码交流专区

更多推荐