|
|
@@ -1,15 +1,23 @@
|
|
|
<template>
|
|
|
- <basic-container class='mt-10'>
|
|
|
- <el-button>22</el-button>
|
|
|
- </basic-container>
|
|
|
+ <div class='flex flex-center full-width'>
|
|
|
+ <div class='ml-10 mr-10 flex flex-center full-width'>
|
|
|
+ <basic-container style='width: 300px;padding: 0'>
|
|
|
+ <left/>
|
|
|
+ </basic-container>
|
|
|
+ <basic-container class='full-width ml-10'>
|
|
|
+ 333
|
|
|
+ </basic-container>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import BasicContainer from '@/components/basic-container/main.vue'
|
|
|
+import left from './components/left.vue'
|
|
|
|
|
|
export default {
|
|
|
name: 'index',
|
|
|
- components: { BasicContainer }
|
|
|
+ components: { BasicContainer, left }
|
|
|
}
|
|
|
</script>
|
|
|
|