This commit is contained in:
hh
2021-11-22 09:17:41 +08:00
parent a348257a03
commit 4a9d1675e5
42 changed files with 1405 additions and 28 deletions

View File

@ -0,0 +1,39 @@
<template>
<div class="container3">
<slot />
</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;
}
</style>