index.vue 360 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <div class="height_100">
  3. <flow-Path></flow-Path>
  4. </div>
  5. </template>
  6. <script>
  7. import flowPath from './flowPath.vue';
  8. export default {
  9. components: {
  10. flowPath
  11. },
  12. props: {},
  13. data() {
  14. return {
  15. };
  16. },
  17. watch: {},
  18. computed: {},
  19. created() {},
  20. mounted() {},
  21. methods: {},
  22. };
  23. </script>
  24. <style lang="scss" scoped>
  25. </style>