You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
457 B
Vue

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