40 lines
481 B
Vue
40 lines
481 B
Vue
![]() |
|
||
|
|
||
|
<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>
|