欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

[Vue warn]: “style“ is a reserved attribute and cannot be used as component prop.

程序员文章站 2022-05-26 17:55:33
...

问题

在调试自定义页面的时候,发现控制台一直报这个错,意思是:“style”是保留属性,不能用作组件属性

这是由于Vue导致的,style属性是原生HTML默认的标签属性,不能直接用在Vue组件里,如下所示:

<el-form style="margin-top: 10px; margin-bottom: 10px">

解决


在Vue里,我们想直接在组件上编写style应该这样:

<div v-bind:style="styleObject"></div>
data: {
  styleObject: {
    color: 'red',
    fontSize: '13px'
  }
}

如果嫌麻烦,可直接这样写:

<div :style="{ display: 'flex' }"></div>