[Doc] update Vue.use usage

This commit is contained in:
陈嘉涵
2018-02-02 14:55:37 +08:00
parent 1b85c09a75
commit e3e8b80744
24 changed files with 42 additions and 56 deletions
+4 -3
View File
@@ -4,9 +4,10 @@
``` javascript
import { ContactCard, ContactList, ContactEdit } from 'vant';
Vue.use(ContactCard);
Vue.use(ContactList);
Vue.use(ContactEdit);
Vue
.use(ContactCard)
.use(ContactList)
.use(ContactEdit);
```
### Usage