12345678910111213141516171819202122232425 |
- <template>
- <IndexView :global="global"></IndexView>
-
- </template>
- <script>
- import IndexView from './graph/index';
- export default {
- name: 'MainView',
- props: {
- global: Object,
- auth: Object
- },
- components:{
- IndexView
- }
- }
- </script>
- <!-- Add "scoped" attribute to limit CSS to this component only -->
- <style scoped>
- </style>
|