App.vue 232 B

1234567891011121314151617181920
  1. <template>
  2. <div id="app">
  3. <FlowChart></FlowChart>
  4. </div>
  5. </template>
  6. <script>
  7. import FlowChart from './components/FlowChart'
  8. export default {
  9. name: 'App',
  10. components: {
  11. FlowChart
  12. }
  13. }
  14. </script>
  15. <style>
  16. </style>