mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-27 19:29:04 +08:00
fix: fix editable cells cannot be entered
This commit is contained in:
@@ -1,7 +1,5 @@
|
||||
<template>
|
||||
<div class="p-4">
|
||||
<div ref="chartRef" :style="{ height, width }" />
|
||||
</div>
|
||||
<div ref="chartRef" :style="{ height, width }" />
|
||||
</template>
|
||||
<script lang="ts">
|
||||
import { defineComponent, PropType, ref, Ref, onMounted } from 'vue';
|
||||
@@ -18,7 +16,7 @@
|
||||
},
|
||||
height: {
|
||||
type: String as PropType<string>,
|
||||
default: '80vh',
|
||||
default: 'calc(100vh - 78px)',
|
||||
},
|
||||
},
|
||||
setup() {
|
||||
|
@@ -1,7 +1,5 @@
|
||||
<template>
|
||||
<div class="p-4">
|
||||
<div ref="chartRef" :style="{ height, width }" />
|
||||
</div>
|
||||
<div ref="chartRef" :style="{ height, width }" />
|
||||
</template>
|
||||
<script lang="ts">
|
||||
import { defineComponent, PropType, ref, Ref, onMounted } from 'vue';
|
||||
@@ -18,7 +16,7 @@
|
||||
},
|
||||
height: {
|
||||
type: String as PropType<string>,
|
||||
default: '80vh',
|
||||
default: 'calc(100vh - 78px)',
|
||||
},
|
||||
},
|
||||
setup() {
|
||||
|
@@ -1,7 +1,5 @@
|
||||
<template>
|
||||
<div class="p-4">
|
||||
<div ref="chartRef" :style="{ height, width }" />
|
||||
</div>
|
||||
<div ref="chartRef" :style="{ height, width }" />
|
||||
</template>
|
||||
<script lang="ts">
|
||||
import { defineComponent, PropType, ref, Ref, onMounted } from 'vue';
|
||||
@@ -16,7 +14,7 @@
|
||||
},
|
||||
height: {
|
||||
type: String as PropType<string>,
|
||||
default: '80vh',
|
||||
default: 'calc(100vh - 78px)',
|
||||
},
|
||||
},
|
||||
setup() {
|
||||
|
Reference in New Issue
Block a user