mirror of
https://gitee.com/dromara/go-view.git
synced 2026-04-23 00:00:12 +08:00
fix: 修改一点类型错误的问题
This commit is contained in:
@@ -68,7 +68,7 @@ const themeColor = ref(designStore.getAppTheme)
|
||||
|
||||
const chartEditStore = getChartEditStore()
|
||||
const chartEditStoreEnum = getChartEditStoreEnum()
|
||||
const { lockScale, scale, userScale } = toRefs(chartEditStore.getEditCanvas)
|
||||
const { lockScale, scale } = toRefs(chartEditStore.getEditCanvas)
|
||||
|
||||
// 缩放选项
|
||||
let filterOptions = reactive([
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import { ref, onUnmounted, onMounted, computed } from 'vue'
|
||||
import { onUnmounted, onMounted } from 'vue'
|
||||
import { ContentBox } from '../ContentBox/index'
|
||||
import { EditRange } from './components/EditRange'
|
||||
import { EditBottom } from './components/EditBottom'
|
||||
@@ -50,7 +50,6 @@ onMounted(() => {
|
||||
})
|
||||
})
|
||||
|
||||
computed(() => { })
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
||||
Reference in New Issue
Block a user