
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
vue-input-calculator-demo
Advanced tools
Calculator interface for input field. Touch & Keyboard input. Vue.js component.
Vue 2 < ver. 1.0.0
Vue 3 > ver. 1.0.0
yarn add vue-input-calculator
Or
npm install --save vue-input-calculator
// main.js
import VueInputCalculator from "vue-input-calculator";
Vue.component('vue-input-calculator', VueInputCalculator);
<template>
<div>
<input type="number" v-model.number="targetValue"/>
<VueInputCalculator enableKeyboard v-model="targetValue">
CALC
</VueInputCalculator>
</div>
</template>
<script>
import VueInputCalculator from "vue-input-calculator";
export default {
name: 'component.vue',
components: {VueInputCalculator},
data() {
return { targetValue: 0 }
}
}
</script>
Props(Parameter) | Type | Default | Description |
---|---|---|---|
v-model (required) | String, Number | - | target input value |
auto-apply | Boolean | false | auto continue/close on calc result |
enable-keyboard | Boolean | false | enable keyboard input |
persistent | Boolean | false | disable backdrop click to cancel (outside click) |
readonly-input | Boolean | true | calculator input read only |
is-history-logs | Boolean | true | show math operations log |
z-index | String, Number | 9999 | layer calculator z-index position |
trigger-wrapper-class | String | - | trigger for open calculator class styles |
text-color | String | #ffffff | calculator text color |
bg-color | String | #2f2f31 | calculator background color |
event-buttons-bg-color | String | #424345 | calculator buttons color(c, ›) |
number-buttons-bg-color | String | #616163 | calculator buttons color(0-9.) |
action-buttons-bg-color | String | #f49e3f | calculator buttons color(+-*=) |
action-success-button-bg-color | String | #3ff451 | calculator OK button color |
FAQs
Calculator input component. Mobile friendly.
The npm package vue-input-calculator-demo receives a total of 1 weekly downloads. As such, vue-input-calculator-demo popularity was classified as not popular.
We found that vue-input-calculator-demo demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.