Skip to content
This repository has been archived by the owner on Jun 18, 2022. It is now read-only.

el3um4s/vue-calc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

86 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Vue Calc

A Simple VueJS's Calculator built with ElectronJS

Last Releases link

screenshot

Version 0.18.04.06

License MIT © 2017-2018 - Samuele de Tomasi

GitHub el3um4s/vue-calc

Created with:

  • Vue.js
  • Vuetify
  • Electron-vue
  • decimal.js
  • Google Font Roboto
  • Google Font Mina
  • vue-shortkey
  • electron-store

Icons created by Arslan Şahìn

Note about Calculator Logic: It should be noted that there are two main schools of thought on calculator input logic: immediate execution logic and formula logic. Formula logic observes order of operation precedence, immediate execution does not. Vue Calc utilizes immediate execution logic.

Either is acceptable, but please note that depending on which you choose, your calculator may yield different results than ours for certain equations (see below example)

3 + 5 x 6 - 2 / 4 =

  • Immediate Execution Logic: 11.5
  • Formula/Expression Logic: 32.5