|
@@ -0,0 +1,23 @@
|
|
|
+/* 推荐区 */
|
|
|
+<template>
|
|
|
+ <div class='recommended-area'>
|
|
|
+ <el-card class="box-card" style="height: 30vh">
|
|
|
+ <template #header>
|
|
|
+ <div class="card-header">
|
|
|
+ <span>推荐区</span>
|
|
|
+ <el-button class="button" type="text">操作按钮</el-button>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <div v-for="o in 4" :key="o" class="text item">
|
|
|
+ {{'列表内容 ' + o }}
|
|
|
+ </div>
|
|
|
+ </el-card>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<style scoped>
|
|
|
+ .recommended-area {
|
|
|
+ height: 30vh;
|
|
|
+ background-color: blue;
|
|
|
+ }
|
|
|
+</style>
|