<html lang="en">
<head>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body>
<div id="app">
<h3>Vue Js Date Picker</h3>
<input type="date" v-model="selectedDate">
<p>Selected Date: {{ selectedDate }}</p>
</div>
<script type="module">
const app = new Vue({
el: "#app",
data() {
return {
selectedDate: ''
};
}
});
</script>
<style scoped>
#app {
text-align: center;
margin-top: 50px;
}
h3 {
color: #333;
}
input[type="date"] {
padding: 10px;
border-radius: 5px;
border: 1px solid #ccc;
font-size: 16px;
}
p {
margin-top: 20px;
font-size: 18px;
}
</style>
</body>
</html>