| 12345678910111213141516171819202122 |
- <template>
- <ModuleBase :type="标签">
- <template #content>
- <div>农行</div>
- </template>
- </ModuleBase>
- </template>
- <script>
- import { getLabelData } from '@/views/book/courseware/data/video';
- import ModuleMixin from '../../common/ModuleMixin';
- export default {
- name: 'LabelPage',
- mixins: [ModuleMixin],
- data() {
- return {
- data: getLabelData(),
- };
- },
- };
- </script>
- <style lang="scss" scoped></style>
|