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 format numbers as (INR) currency strings</h3> <p>price: {{price}}</p> <p>Format Price: {{ formattedPrice }}</p> </div> <script> const app = new Vue({ el: "#app", data() { return { price: 234234.45 }; }, computed: { formattedPrice() { // Format the price using the toLocaleString method with en-IN locale and INR currency return this.price.toLocaleString('en-IN', { style: 'currency', currency: 'INR' }); } } }); </script> </body> </html>