Vue JS - Open link in new tab Example
If you want to open url in new tab in vue js then i will help to give simple example of open link in new tab in vuejs. we will do using jquery window.open and "_blank" option so it open in new tab.
we will use simple jquery window for open new tab for url. bellow i give you full and simple example so you can simply copy html file and check how it works. let's see bellow example.
Example:
<!DOCTYPE html>
<html>
<head>
<title>Vue JS - Open link in new tab Example - ItSolutionStuff.com</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.0.5/vue.min.js"></script>
</head>
<body>
<div id="app">
<button @click="myFunction()">Click Me</button>
</div>
<script type="text/javascript">
new Vue({
el: '#app',
data: {
myModel:false
},
methods:{
myFunction: function () {
window.open("https://itsolutionstuff.com", "_blank");
}
}
});
</script>
</body>
</html>
I hope it can help you...

Hardik Savani
I'm a full-stack developer, entrepreneur and owner of Aatman Infotech. 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
- How to check object or array empty or not in Vue JS?
- How to get element by id in vue js?
- Laravel Vue Router Example From Scratch
- Laravel Vue Flash Message Example From Scratch
- Laravel Vue JS File Upload Using vue-dropzone Example
- Laravel Vue JS Image Upload Example with Demo
- Laravel Vue JS Axios Post Request Example and Demo