1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <ModuleBase :type="data.type">
- <template #content>
- <hr :style="settingStyle" />
- </template>
- </ModuleBase>
- </template>
- <script>
- import { getDividerData } from '@/views/book/courseware/data/divider';
- import ModuleMixin from '../../common/ModuleMixin';
- export default {
- name: 'DividerPage',
- mixins: [ModuleMixin],
- data() {
- return {
- data: getDividerData(),
- };
- },
- computed: {
- settingStyle() {
- return {
- margin: `${this.data.setting.height / 2}px 0`,
- border: 'none',
- borderTop: `1px ${this.data.setting.type} #ebebeb`,
- };
- },
- },
- methods: {},
- };
- </script>
- <style lang="scss" scoped></style>
|