|
|
@@ -0,0 +1,37 @@
|
|
|
+<template>
|
|
|
+ <div>
|
|
|
+ <el-card :shadow="hover">
|
|
|
+ <div class="full-width flex flex-center flex-justify-start">
|
|
|
+ <el-icon><Bell /></el-icon>
|
|
|
+ <span class="ml-10">首页</span>
|
|
|
+ </div>
|
|
|
+ </el-card>
|
|
|
+
|
|
|
+ <div class="flex flex-center flex-justify-between">
|
|
|
+ <el-card :shadow="hover" class="flex-child-average mt-20">
|
|
|
+ <profile
|
|
|
+ /></el-card>
|
|
|
+ <div class="padding"></div>
|
|
|
+ <el-card :shadow="hover" class="flex-child-average mt-20">
|
|
|
+ <div>33</div>
|
|
|
+ </el-card>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<route>
|
|
|
+{
|
|
|
+path: '/',
|
|
|
+name: '首页',
|
|
|
+}
|
|
|
+</route>
|
|
|
+
|
|
|
+<script>
|
|
|
+import Profile from '@/views/dash/compoents/profile.vue'
|
|
|
+
|
|
|
+export default {
|
|
|
+ components: { Profile }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped></style>
|