screen_rotation
Copied to Clipboard
<!DOCTYPE html> <html> <head> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> </head> <body> <div id="app"> <h3>Vue Js concat after specific word</h3> <p>Original String:{{originalString}}</p> <p>New String: {{ newString }}</p> </div> <script> new Vue({ el: '#app', data() { return { originalString: "Hello world!", newString: "" } }, created() { const newStringPart = "How are you?"; const wordToConcatAfter = "world"; this.newString = this.originalString.replace(wordToConcatAfter, `${newStringPart}`); } }); </script> </body> </html>