update README.

This commit is contained in:
chengpeiquan 2021-01-07 23:19:25 +08:00
parent 1654d26050
commit 0e1984e314

View File

@ -136,10 +136,11 @@ pageUrl|否|String|提交上报的url必须是以 `/` 开头的相对路径<b
this.$pushBAIDU.pv(this.pageUrl); this.$pushBAIDU.pv(this.pageUrl);
``` ```
在 Vue 3.0 里使用需要遵循Vue3的规范引入一个Vue自带的代理组件 在 Vue 3.0 里使用
使用3.0的生命周期需要遵循Vue3的规范引入一个Vue自带的代理组件并写在 `setup` 里执行)
```js ```js
const { getCurrentInstance } = Vue;
const { proxy } = getCurrentInstance(); const { proxy } = getCurrentInstance();
proxy.$pushBAIDU.pv(pageUrl.value); proxy.$pushBAIDU.pv(pageUrl.value);
@ -173,10 +174,11 @@ this.$pushBAIDU.event(
); );
``` ```
在 Vue 3.0 里使用需要遵循Vue3的规范引入一个Vue自带的代理组件 在 Vue 3.0 里使用
使用3.0的生命周期需要遵循Vue3的规范引入一个Vue自带的代理组件并写在 `setup` 里执行)
```js ```js
const { getCurrentInstance } = Vue;
const { proxy } = getCurrentInstance(); const { proxy } = getCurrentInstance();
proxy.$pushBAIDU.event( proxy.$pushBAIDU.event(