Svelte 绑定尺寸属性
Posted 右究
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Svelte 绑定尺寸属性相关的知识,希望对你有一定的参考价值。
正文
类似 clientWidth、clientHeight 这类属性,想要实时获取它们的值需要进行事件监听,但借助 Svelte 强大的数据绑定功能,可以做到对这一类属性的绑定与即时获取。
<script>
let clientWidth, clientHeight;
</script>
<div bind:clientWidth bind:clientHeight>
{clientWidth} - {clientHeight}
</div>
<style>
div {
width: 80vw;
height: 80vh;
}
</style>
参考
https://www.sveltejs.cn/tutorial/dimensions
以上是关于Svelte 绑定尺寸属性的主要内容,如果未能解决你的问题,请参考以下文章