weChartIndex.vue 229 B

123456789101112131415
  1. <template>
  2. <div class="we-chart-index">
  3. <CreateApply />
  4. </div>
  5. </template>
  6. <script setup lang="ts">
  7. import CreateApply from "./createApply.vue";
  8. </script>
  9. <style scoped>
  10. .we-chart-index {
  11. min-height: 100%;
  12. }
  13. </style>