index.vue 442 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <div>
  3. <head-bar @back="back">
  4. <template #title>
  5. <div>
  6. 课程名字
  7. </div>
  8. </template>
  9. </head-bar>
  10. </div>
  11. </template>
  12. <script>
  13. import headBar from '@/components/headBar.vue'
  14. export default {
  15. components: {
  16. headBar
  17. },
  18. data() {
  19. return {}
  20. },
  21. methods: {
  22. back() {
  23. this.$router.push({ path: '/home' })
  24. }
  25. }
  26. }
  27. </script>
  28. <style lang="scss" scoped></style>