screen_rotation
Copied to Clipboard
<!DOCTYPE html> <html> <head> <script src="https://unpkg.com/vue@3.2.22/dist/vue.global.js"></script> </head> <body> <div id="app"> <h3>Vue Js Remove White Space from start of String</h3> <pre>Text:{{ message }}</pre> <pre>Text after Remove white space:{{formattedMessage}}</pre> </div> <script type="module"> const app = Vue.createApp({ data() { return { message: ' Remove String white space start of string in Vue Js', } }, computed: { formattedMessage() { return this.message.trimStart(); } } }); app.mount('#app'); </script> <style scoped> #app { font-family: Arial, sans-serif; margin: 0 auto; max-width: 600px; padding: 20px; } pre { background-color: #f5f5f5; border: 1px solid #ccc; border-radius: 5px; font-size: 14px; padding: 10px; margin: 10px 0; white-space: pre-wrap; } pre:first-of-type { margin-top: 0; } pre:last-of-type { margin-bottom: 0; } </style> </body> </html>