前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >nvue获取节点信息

nvue获取节点信息

作者头像
阿超
发布2022-08-21 10:51:31
1.4K0
发布2022-08-21 10:51:31
举报
文章被收录于专栏:快乐阿超快乐阿超

我们生活在阴沟里,但依然有人仰望星空。——王尔德

nvue中我们获取节点信息就需要如下写法:

代码语言:javascript
复制
<template>
	<view ref="list-parent" class="ruben">
		<list>
			<cell><view>阿超</view></cell>
		</list>
	</view>
</template>

<script>
const dom = weex.requireModule('dom');
export default {
	data() {
		return { index: 1 };
	},
	mounted() {
		console.log('mounted');
		dom.getComponentRect(this.$refs['list-parent'], res => {
			console.log('list res: ', res);
		});
		dom.getComponentRect('viewport', res => {
			console.log('viewport res: ', res);
		});
	},
	methods: {}
};
</script>

<style scoped>
.ruben {
	height: 200px;
	width: 200px;
}
</style>

此处打印结果:

image-20211214200724405
image-20211214200724405

对应官方文档:

https://uniapp.dcloud.io/nvue-api?id=dom

https://uniapp.dcloud.io/nvue-api?id=getcomponentrect

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2021-12-14,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档