forked from opentiny/tiny-vue
31 lines
497 B
Vue
31 lines
497 B
Vue
<template>
|
|
<tiny-amount
|
|
v-model="value"
|
|
:digits="4"
|
|
:max-len="12"
|
|
:hold-zero="false"
|
|
@change="handleChange"
|
|
:rounding="false"
|
|
></tiny-amount>
|
|
</template>
|
|
|
|
<script>
|
|
import { Amount, Modal } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyAmount: Amount
|
|
},
|
|
data() {
|
|
return {
|
|
value: 888.88
|
|
}
|
|
},
|
|
methods: {
|
|
handleChange(value) {
|
|
Modal.message({ message: `当前值为 ${value.amount}`, status: 'info' })
|
|
}
|
|
}
|
|
}
|
|
</script>
|