vue 在template内通过style中的calc动态计算dom元素的高度
vue
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
项目地址:https://gitcode.com/gh_mirrors/vu/vue
免费下载资源
·
<template>
<div :style="getCalcHeght()">使用方法</div>
</template>
<script>
export default {
methods: {
getCalcHeght() {
//let heightValue = "100px";
//let num = 1;
let myHeight = '100'
if(window.innerHeight < 832){
return { height: 'auto' };
}else{
return {
//minHeight: `calc(${heightValue} / ${num} - 150px)` ,
height:`calc(100% - ${myHeight}px - 150px)`,
padding: `0 120px`
};
}
},
}
}
</script>
GitHub 加速计划 / vu / vue
80
16
下载
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
最近提交(Master分支:4 个月前 )
73486cb5
* chore: fix link broken
Signed-off-by: snoppy <michaleli@foxmail.com>
* Update packages/template-compiler/README.md [skip ci]
---------
Signed-off-by: snoppy <michaleli@foxmail.com>
Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com> 6 个月前
e428d891
Updated Browser Compatibility reference. The previous currently returns HTTP 404. 7 个月前
更多推荐
已为社区贡献6条内容
所有评论(0)