docs(Form): fix button type (#8190)

This commit is contained in:
neverland 2021-02-21 16:28:35 +08:00 committed by GitHub
parent 906f01cc8e
commit da09a6d871
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,7 +38,9 @@ app.use(Form);
:rules="[{ required: true, message: '请填写密码' }]"
/>
<div style="margin: 16px;">
<van-button round block type="info" native-type="submit">提交</van-button>
<van-button round block type="primary" native-type="submit">
提交
</van-button>
</div>
</van-form>
```