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

@@ -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>
```