23 lines
313 B
Vue
23 lines
313 B
Vue
<template>
|
|
<div class="com-root">
|
|
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: "view-venues"
|
|
}
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
.com-root{
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background-image: url("../../static/gdz49@3x.png");
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
}
|
|
</style>
|