Files

53 lines
755 B
Vue
Raw Normal View History

2021-11-22 09:17:41 +08:00
<template>
<div class="container3">
<slot />
2021-11-23 08:38:22 +08:00
<div class="container3bg"></div>
2021-11-22 09:17:41 +08:00
</div>
</template>
<script>
export default {
name: 'Container3',
props: {
title: {
type: String,
default: '',
},
selected: {
type: Boolean,
default: false,
},
},
data () {
return {
}
},
}
</script>
<style lang="scss" scoped>
.container3 {
width: 766px;
height: 632px;
background-image: url(./bg.png);
background-size: cover;
overflow: hidden;
2021-11-23 08:38:22 +08:00
z-index: 10;
.container3bg {
position: absolute;
top: 0;
left: 0;
width: 766px;
height: 632px;
background-image: url(./bg.png);
background-size: cover;
pointer-events: none;
user-select: none;
}
2021-11-22 09:17:41 +08:00
}
</style>