index.vue 457 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <div class="bs-template-mag-wrap">
  3. <BigScreenMag type="template" />
  4. </div>
  5. </template>
  6. <script>
  7. import BigScreenMag from 'data-room-ui/BigScreenMag'
  8. export default {
  9. name: '',
  10. props: {},
  11. components: {
  12. BigScreenMag
  13. },
  14. data () {
  15. return {
  16. }
  17. },
  18. mounted () {},
  19. methods: {
  20. }
  21. }
  22. </script>
  23. <style lang="scss" scoped>
  24. .bs-template-mag-wrap{
  25. height: 100%;
  26. width: 100%;
  27. position: relative;
  28. }
  29. </style>