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"> <div> <h1>Vue Js make text with (#)hash tag bold</h1> <p>Normal Text: {{text}}</p> <p v-html="formatTextWithHashTags(text)"></p> </div> </div> <script> new Vue({ el: '#app', data() { return { text: "This is a #test for #bold hashtags" } }, methods: { formatTextWithHashTags(text) { return text.replace(/#\w+/g, '<strong>$&</strong>'); } } }); </script> </body> </html>