This commit is contained in:
2021-02-25 19:49:00 +00:00
parent 8a7184a8ae
commit 03b7226ae5
4 changed files with 30 additions and 15 deletions

View File

@@ -13,11 +13,13 @@
:label="label"
:rules="rules"
:error-messages="errorMessages"
:append-outer-icon="appendOuterIcon"
@click:append-outer="$emit('gz-append-outer')"
></v-text-field>
</div>
</template>
<script>
/* Xeslint-disable */
/* Xeslint-disable //@click:append-outer="appendOuter"*/
//https://dm4t2.github.io/vue-currency-input/guide/#introduction :value="formattedValue"
//https://codesandbox.io/s/vue-template-kd7d1?fontsize=14&module=%2Fsrc%2FApp.vue
//https://github.com/dm4t2/vue-currency-input
@@ -36,7 +38,8 @@ export default {
value: { type: Number, default: null },
readonly: { type: Boolean, default: false },
disabled: { type: Boolean, default: false },
errorMessages: { type: Array, default: null }
errorMessages: { type: Array, default: null },
appendOuterIcon: { type: String, default: null }
},
computed: {
currencyValue() {