tiny-vue/examples/sites/demos/mobile-first/app/amount/pop-up.vue

19 lines
261 B
Vue

<template>
<tiny-amount :pop-up="false" v-model="value"></tiny-amount>
</template>
<script>
import { Amount } from '@opentiny/vue'
export default {
components: {
TinyAmount: Amount
},
data() {
return {
value: 88.88
}
}
}
</script>