79400898

Date: 2025-01-30 18:37:46
Score: 0.5
Natty:
Report link

You need to use the "hide-input-icon" property. According to the docs, the following example should do what you need:

<template>
    <VueDatePicker v-model="date" hide-input-icon />
</template>

<script setup>
import { ref } from 'vue';

const date = ref(new Date());
</script>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ñhosko