Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 364 Bytes

File metadata and controls

19 lines (17 loc) · 364 Bytes
<template>
  <ion-datetime presentation="date"></ion-datetime>
</template>

<script setup lang="ts">
  import { IonDatetime } from '@ionic/vue';
</script>

<style scoped>
  /*
   * Custom Datetime Header Part
   * -------------------------------------------
   */
  ion-datetime::part(month-year-button) {
    background-color: lightblue;
  }
</style>