Vue JS Call a Function On Load Example
If you want to call a function on page load in vue js then in this example i will show you how to trigger function on page load in vue js. we will run function on page load vue application.
we mostly require to call method on page load in our application. so you want to call function in vue.js app then you can do it using created option in vue js. So i will give full example so you can check it out.
Example:
<!DOCTYPE html>
<html>
<head>
<title>Vue JS call function on load Example - ItSolutionStuff.com</title>
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
</head>
<body>
<div id="app">
{{ message }}
</div>
<script type="text/javascript">
var app = new Vue({
el: '#app',
data: {
message: 'Hello Vue!'
},
methods:{
myFunctionOnLoad: function() {
console.log('call on load...');
}
},
created: function(){
this.myFunctionOnLoad()
}
})
</script>
</body>
</html>
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- Vue JS Get Selected Option Text Example
- How to Get Data Attribute Value in Vue JS?
- Vue JS Get Array Length or Object Length Example
- Vue JS Ajax Form Submit Example Code
- How to Get Current Date and Time in Vue JS?
- How to use datepicker in vuejs?
- Vue JS MultiSelect Dropdown Example
- How to Change Date Format using Moment in Vue JS?
- How to Replace String in Vue JS?
- How to Open a Link in a New Tab in Vue JS?
- How to Use setTimeout Function in Vue JS?
- How to Check Object or Array Empty or Not in Vue JS?
- How to Get Element by ID in Vue JS?
- Vue JS Scroll to Element in Div using Vue-scrollto Example