my.vue 270 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view>
  3. <course-list :onlyLearn="true"></course-list>
  4. </view>
  5. </template>
  6. <script>
  7. import CourseList from './index'
  8. export default {
  9. components: { CourseList},
  10. data() {
  11. return {
  12. }
  13. },
  14. methods: {
  15. }
  16. }
  17. </script>
  18. <style>
  19. </style>