MainView.vue 349 B

12345678910111213141516171819202122232425
  1. <template>
  2. <IndexView :global="global"></IndexView>
  3. </template>
  4. <script>
  5. import IndexView from './graph/index';
  6. export default {
  7. name: 'MainView',
  8. props: {
  9. global: Object,
  10. auth: Object
  11. },
  12. components:{
  13. IndexView
  14. }
  15. }
  16. </script>
  17. <!-- Add "scoped" attribute to limit CSS to this component only -->
  18. <style scoped>
  19. </style>