Vue Js Get Current Date Time Example
Hi Guys,
Today, I will learn you how to get current date time in vue js. We will show example of vue js get current date time. you can easily get current date time in Vue js. If yes then I will help you to getting current date and time in vue js app. if you know to get current date in javascript or jquery then you can get same way using Date Class. we can also display current date with yyyy-mm-dd format.
it is very simple to get the current date time in vue js because we can get it using Date(). Date() will provide full date and time with timezone. so you can also make better format like yyyy-mm-dd.
Here, i gave you very simple example so you can understand how to display current date and time in vue app.
Example
<!DOCTYPE html>
<html>
<head>
<title>How to get current date time in vue js? - Nicesnippets.com</title>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body>
<div id="app">
{{ message }}
</div>
</body>
<script type="text/javascript">
new Vue({
el: '#app',
data: {
message:"Welcome, Please Wait...."
},
methods:{
callFunction: function () {
var currentDate = new Date();
console.log(currentDate);
var currentDateWithFormat = new Date().toJSON().slice(0,10).replace(/-/g,'/');
console.log(currentDateWithFormat);
}
},
mounted () {
this.callFunction()
}
});
</script>
</html>
It will help you....
- How to Build VUE JS CRUD Using Node js Express and MySQL?
- Vue js File Upload Axios Php Example
- Vue Js Application Check Current Version In Ubuntu
- Vue JS Get Array Length Or Object Length Tutorial
- Vue JS Download File using Axios Example
- Vue JS Declare Global Variable Example
- Vue Js Sweetalert Modal Notification Tutorial
- Vue Js Get Element By Id Example