screen_rotation
Copied to Clipboard
<html> <head> <meta charset="UTF-8"> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> </head> <body> <div id="app"> <h3>Vue Js Remove all spaces from string</h3> <p>{{ message }}</p> <p>{{ messageWithoutSpaces }}</p> </div> <script type="module"> const app = new Vue({ el: "#app", data() { return { message: ' Welcome to font awesome icons.com ', } }, computed: { messageWithoutSpaces() { return this.message.replace(/\s/g, ''); } } }); </script> <style scoped> #app { font-family: 'Helvetica Neue', sans-serif; color: #333; background-color: #f9f9f9; padding: 20px; } h3 { font-size: 1.5rem; font-weight: bold; margin-bottom: 10px; } p { font-size: 1rem; line-height: 1.5; } /* style the messageWithoutSpaces element */ #app p:nth-of-type(2) { font-weight: bold; color: #c00; letter-spacing: 0.1em; margin-top: 20px; } </style> </body> </html>