How to replace string in Vue JS?
In this post we will give you information about How to replace string in Vue JS?. Hear we will give you detail about How to replace string in Vue JS?And how to use it also give you demo for it if it is necessary.
In example, i will show you how to replace string in vuejs. we will replace string using jquery replace function. we will use jquery code replace function to replace word form string in vue.js.
Below simple example to replace string “Welcome to ItSolutionStuff.com” into “Welcome to HDTuto.com”. It is a very simple and basic, so you can easily understand it.
Example:
<!DOCTYPE html>
<html>
<head>
<title>How to replace string in Vue JS? - ItSolutionStuff.com</title>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body>
<div id="app">
<div id="myId" ref="myId">{{ message }}</div>
<button @click="myFunction()">Click Me</button>
</div>
</body>
<script type="text/javascript">
new Vue({
el: '#app',
data: {
message:"Welcome to ItSolutionStuff.com"
},
methods:{
myFunction: function () {
this.message = this.message.replace("ItSolutionStuff.com", "HDTuto.com");
}
}
});
</script>
</html>
I hope it can help you…
Hope this code and post will helped you for implement How to replace string in Vue JS?. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs