[Vuejs]-Change value after confirmation in input VUE-JS

0👍

how is calculatePricingCustomDriver being loaded into your Vue component? For it to be called like that from @blur you would need to define it as a method:

<template>
  <!-- your table-->
</template>

<script>
export default {
  name: "MyComponent",
  methods : {
    calculatePricingCustomDriver () {
      // your code
    }
  }
}
</script>

Or it could be installed as a global mixin

Leave a comment