vue-codemirror设置高度,自定义高度,跟随屏幕高度
vue
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
项目地址:https://gitcode.com/gh_mirrors/vu/vue
免费下载资源
·
在vue页面中
<template>
<div style="height: 600px">
<codemirror
ref="myCm"
v-model="myCode"
:options="cmOptions"
class="code"
/>
</div>
</template>
设置指定高度
this.editor = this.$refs.myCm.codemirror;
// 设置codemirror高度为600
this.editor.setSize('auto', 600);
随屏幕高度变化
// 监听屏幕
mounted() {
let that = this;
that.clientHeight = `${document.documentElement.clientHeight}`;//获取浏览器可视区域高度
// // 获取codemirror对象
that.editor = this.$refs.myCm.codemirror;
// // 设置codemirror高度
that.editor.setSize('auto',this.clientHeight - 105);
// 监听屏幕
window.onresize = function () {
that.clientHeight = `${document.documentElement.clientHeight}`;
// 设置代码区域高度
that.editor.setSize('auto',parseFloat(that.clientHeight) - 105);
}
},
GitHub 加速计划 / vu / vue
207.55 K
33.66 K
下载
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
最近提交(Master分支:3 个月前 )
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> 5 个月前
e428d891
Updated Browser Compatibility reference. The previous currently returns HTTP 404. 5 个月前
更多推荐
已为社区贡献1条内容
所有评论(0)