docs(@vant/use): useRect should be used inside onMounted (#9989)

This commit is contained in:
按时吃饭 2021-12-03 09:46:59 +08:00 committed by GitHub
parent 56ccf9da1c
commit ed156f24c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,16 +13,18 @@
```
```js
import { ref } from 'vue';
import { ref, onMounted } from 'vue';
import { useRect } from '@vant/use';
export default {
setup() {
const root = ref();
const rect = useRect(root);
console.log(rect); // -> 元素的大小及其相对于视口的位置
onMounted(()=>{
const rect = useRect(root);
console.log(rect); // -> 元素的大小及其相对于视口的位置
})
return { root };
},
};