style(Field): adjust field placeholder color to gray-5 (#6304)

This commit is contained in:
neverland
2020-05-19 11:04:16 +08:00
committed by GitHub
parent 8317fe70ee
commit ee599ddcbe
5 changed files with 12 additions and 5 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ Vue.use(Field);
```html
<!-- Field 是基于 Cell 实现的,可以使用 CellGroup 作为容器来提供外边框。 -->
<van-cell-group>
<van-field v-model="value" placeholder="请输入用户名" />
<van-field v-model="value" label="文本" placeholder="请输入用户名" />
</van-cell-group>
```