Guest User

Untitled

a guest
Feb 17th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <template>
  2. <div>
  3. <h1>Simple Interest</h1>
  4. <p>The calculated Simple Interest is {{(principle * interest * rate) / 100}}</p>
  5. </div>
  6. </template>
  7.  
  8. <script>
  9. export default {
  10. data(){
  11. return{
  12. principle: 10,
  13. interest: 2,
  14. rate: 10
  15. }
  16. }
  17. }
  18. </script>
  19.  
  20. <style>
  21.  
  22. </style>
Add Comment
Please, Sign In to add comment