dashboardB-index.vue 317 Bytes
Newer Older
wuhao's avatar
wuhao committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<script setup>
import layout from "./layout.vue"

const state=reactive({
  APConfig:{
    height:930,
    backgroundFillAll:true,
    backgroundName:"A2",
    chartCount:9
  }
})

</script>
<template>
  <adaptivePanel :config="state.APConfig"><layout></layout></adaptivePanel>
</template>
<style lang="less">
</style>