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