index.vue 276 B

1234567891011121314151617181920212223
  1. <template>
  2. <div>
  3. 我是系统图
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. props: [],
  9. data() {
  10. return {};
  11. },
  12. computed: {},
  13. methods: {},
  14. created() {},
  15. mounted() {},
  16. components: {
  17. },
  18. };
  19. </script>
  20. <style scoped>
  21. </style>