docs: fix quickstart

This commit is contained in:
chenjiahan 2020-09-23 09:36:11 +08:00
parent c1931e6608
commit 1b87cde8fb
4 changed files with 4 additions and 4 deletions

View File

@ -58,7 +58,7 @@ import { Button } from 'vant';
import 'vant/lib/index.css';
const app = createApp();
Vue.use(Button);
app.use(Button);
```
See more in [Quickstart](https://youzan.github.io/vant#/en-US/quickstart).

View File

@ -61,7 +61,7 @@ import { Button } from 'vant';
import 'vant/lib/index.css';
const app = createApp();
Vue.use(Button);
app.use(Button);
```
vant 也支持按需引入、CDN 引入等方式,详细说明见 [快速上手](https://vant-contrib.gitee.io/vant#/zh-CN/quickstart).

View File

@ -121,7 +121,7 @@ The easiest way to use Vant is to include a CDN link in the html file, after whi
vant.Toast('Message');
// Register Lazyload directive
Vue.use(vant.Lazyload);
// app.use(vant.Lazyload);
</script>
```

View File

@ -139,7 +139,7 @@ app.use(Vant);
// 通过 CDN 引入时不会自动注册 Lazyload 组件
// 可以通过下面的方式手动注册
Vue.use(vant.Lazyload);
// app.use(vant.Lazyload);
</script>
```