Newer
Older
adminAccountabilityFront / src / views / home / components / calendar.vue
liyaguang on 15 Sep 2023 530 bytes feat(*): 首页完成
<script lang="ts" setup name="Calendar">
const value = ref(new Date())
</script>

<template>
  <el-card class="box-card">
    <el-calendar v-model="value" disabled />
  </el-card>
</template>

<style rel="stylesheet/scss" lang="scss">
  .box-card {
    .el-calendar {
      font-size: 13px;

      .el-calendar__button-group {
        display: none;
      }

      .el-calendar__body {
        .el-calendar-table {
          .el-calendar-day {
            height: 40px !important;
          }
        }
      }
    }
  }
</style>