12345678910111213141516171819202122232425262728 |
- <template>
- <div class="bs-template-mag-wrap">
- <SourceMag type="template" />
- </div>
- </template>
- <script>
- import SourceMag from 'packages/SourceMag'
- export default {
- name: '',
- props: {},
- components: {
- SourceMag
- },
- data () {
- return {}
- },
- mounted () { },
- methods: {}
- }
- </script>
- <style lang="scss" scoped>
- .bs-template-mag-wrap {
- height: 100%;
- width: 100%;
- position: relative;
- }
- </style>
|