阅行客电子档案
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
347 B

  1. <template>
  2. <div>
  3. <Running ref="running" :is-histroy="true" />
  4. </div>
  5. </template>
  6. <script>
  7. import Running from '../running/index'
  8. export default {
  9. name: 'History',
  10. components: { Running },
  11. data() {
  12. return {
  13. }
  14. },
  15. mounted() {
  16. },
  17. methods: {
  18. }
  19. }
  20. </script>
  21. <style lang="scss" scoped>
  22. </style>