mirror of
https://gitee.com/vant-contrib/vant.git
synced 2026-01-10 08:36:55 +08:00
Pre Merge pull request !2 from 崔明辉/feature/useRect
This commit is contained in:
commit
df1c988d15
@ -13,15 +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 };
|
||||
},
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user