Label.vue 437 B

12345678910111213141516171819202122
  1. <template>
  2. <ModuleBase :type="标签">
  3. <template #content>
  4. <div>农行</div>
  5. </template>
  6. </ModuleBase>
  7. </template>
  8. <script>
  9. import { getLabelData } from '@/views/book/courseware/data/video';
  10. import ModuleMixin from '../../common/ModuleMixin';
  11. export default {
  12. name: 'LabelPage',
  13. mixins: [ModuleMixin],
  14. data() {
  15. return {
  16. data: getLabelData(),
  17. };
  18. },
  19. };
  20. </script>
  21. <style lang="scss" scoped></style>