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.
31 lines
412 B
Vue
31 lines
412 B
Vue
2 years ago
|
<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>
|