18 lines
382 B
Vue
18 lines
382 B
Vue
|
<template>
|
||
|
<div class="main" :style="{width: canvasWidth+'px'}">
|
||
|
<transition name="el-zoom-in-bottom">
|
||
|
<map-system-draft ref="mapCanvas" @back="back" />
|
||
|
</transition>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
import MapSystemDraft from '@/views/newMap/mapsystemNew/index';
|
||
|
|
||
|
export default {
|
||
|
name:'RefereeDisplay',
|
||
|
components: {
|
||
|
MapSystemDraft
|
||
|
}
|
||
|
};
|
||
|
</script>
|