56 lines
1.1 KiB
Vue
56 lines
1.1 KiB
Vue
<template>
|
|
<div class="demo-container coBox2">
|
|
<tiny-container pattern="simple">
|
|
<template #aside>
|
|
<tiny-layout>Aside</tiny-layout>
|
|
</template>
|
|
<tiny-layout>Main</tiny-layout>
|
|
</tiny-container>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="jsx">
|
|
import { Container, Layout } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyContainer: Container,
|
|
TinyLayout: Layout
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.demo-container .tiny-container {
|
|
height: 200px;
|
|
color: #5f6774;
|
|
text-align: center;
|
|
font-size: 18px;
|
|
position: relative;
|
|
}
|
|
|
|
.demo-container .tiny-container .tiny-container__header {
|
|
background-color: #ecf8ff;
|
|
border: 3px solid #ffffff;
|
|
color: #5b90af;
|
|
}
|
|
|
|
.demo-container .tiny-container .tiny-container__aside {
|
|
background-color: #ffecec;
|
|
border: 3px solid #ffffff;
|
|
color: #d27070;
|
|
}
|
|
|
|
.demo-container .tiny-container .tiny-container__main {
|
|
background-color: #fffdec;
|
|
border: 3px solid #ffffff;
|
|
color: #b1a859;
|
|
}
|
|
|
|
.demo-container .tiny-container .tiny-container__footer {
|
|
background-color: #e8ffed;
|
|
border: 3px solid #ffffff;
|
|
color: #84a18a;
|
|
}
|
|
</style>
|