screen_rotation
Copied to Clipboard
<html> <head> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> </head> <body> <div id="app"> <h2>Vue js String replace Method </h2> <p>String: {{string}}</p> <p>Reomved last Comma: {{result}}</p> </div> <script type="module"> const app = new Vue({ el: "#app", data() { return { string: "example string,", result: '' } }, mounted() { this.result = this.string.substring(0, this.string.length - 1); // remove last character } }) </script> </body> </html>