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>