2018-09-05T08:47:52Z||2018-09-05T08:47:52Z
不能直接在template中按照HTML的方式使用style:
<div style="background-color: white"><div>
改成Vue的方式:
<div :style="{ backgroundColor: 'white' }"></div>
2018-09-05T08:47:52Z||2018-09-05T08:47:52Z
不能直接在template中按照HTML的方式使用style:
<div style="background-color: white"><div>
改成Vue的方式:
<div :style="{ backgroundColor: 'white' }"></div>