record.vue 249 B

1234567891011121314151617181920212223
  1. <template>
  2. <view>
  3. <headerTo act_index="3"/>
  4. </view>
  5. </template>
  6. <script>
  7. import headerTo from "../components/header";
  8. export default {
  9. components: {
  10. headerTo,
  11. },
  12. data() {
  13. return {
  14. }
  15. },
  16. }
  17. </script>
  18. <style>
  19. </style>