yansenlei/VJsoneditor

Vue ts中:height会直接报错,而且不能渲染出来

Opened this issue · 3 comments

在Vue 2.0 结合ts使用的时候发现上述标题错误

麻烦提供下版本号和代码等信息

这个用的时候想全局使用,Vue的项目用了ts当插件的话由于这个包没有类型约束。所以只能是单独引进

<template lang="html">
  <div class="jsoneditor-container" :class="{'max-box':max,'min-box':!max}" :style="getHeight">
    <div ref="jsoneditor" class="jsoneditor-box"></div>
    <button type="button" @click="max = !max" class="max-btn" size="mini"
            v-if="options.mode == 'code' && plus"></button>
  </div>
</template>
....
computed: {
      getHeight() {
        if (this.height && !this.max) {
          return {
            height: this.height
          }
        }
        return {}
      }
    }