screen_rotation
Copied to Clipboard
<!DOCTYPE html> <html> <head> <script src="https://unpkg.com/vue@3/dist/vue.global.js"></script> </head> <body> <h4>Vue Js Convert String into Title Case using Regx </h4> <div id="app"> <h1>{{ toTitleCase(title) }}</h1> </div> <script type="module"> const app = Vue.createApp({ data() { return { title: 'hello world!' } }, methods: { toTitleCase(str) { return str.toLowerCase().replace(/(^|\s|-|\')(\w)/g, function (match) { return match.toUpperCase(); }); } } }); app.mount('#app'); </script> </body> </html>