mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
docs: fix quickstart
This commit is contained in:
parent
c1931e6608
commit
1b87cde8fb
@ -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).
|
||||
|
@ -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).
|
||||
|
@ -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>
|
||||
```
|
||||
|
||||
|
@ -139,7 +139,7 @@ app.use(Vant);
|
||||
|
||||
// 通过 CDN 引入时不会自动注册 Lazyload 组件
|
||||
// 可以通过下面的方式手动注册
|
||||
Vue.use(vant.Lazyload);
|
||||
// app.use(vant.Lazyload);
|
||||
</script>
|
||||
```
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user