screen_rotation
Copied to Clipboard
<!DOCTYPE html> <html lang="en"> <head> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> </head> <body> <div id="app"> <h3>Vue Js Get first two Characters from string</h3> <p>Original String: {{ originalString }}</p> <p>First Two Characters: {{ firstTwoCharacters }}</p> </div> <script type="module"> const app = new Vue({ el: "#app", data() { return { originalString: 'fontawesomeicons.com', }; }, computed: { firstTwoCharacters() { return this.originalString.slice(0, 2); }, }, }); </script> <style scoped> #app { background-color: lightblue; padding: 10px; font-family: Arial, sans-serif; } p { font-size: 16px; line-height: 1.5; color: black; margin-bottom: 10px; } </style> </body> </html>