index.vue 423 B

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