AppMain.vue 424 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div class="app-main">
  3. <LeftTools></LeftTools>
  4. <GraphContainer></GraphContainer>
  5. </div>
  6. </template>
  7. <script>
  8. import LeftTools from './LeftTools'
  9. import GraphContainer from './GraphContainer'
  10. export default {
  11. components: {
  12. LeftTools,
  13. GraphContainer
  14. }
  15. }
  16. </script>
  17. <style scoped>
  18. .app-main {
  19. display: flex;
  20. flex-direction: row;
  21. flex-grow: 1;
  22. width: 100%;
  23. height: 100%;
  24. }
  25. </style>