tiny-vue/examples/sites/demos/pc/app/amount/custom-currency-composition...

11 lines
235 B
Vue

<template>
<tiny-amount v-model="value" currency="HKD" disabled></tiny-amount>
</template>
<script setup lang="jsx">
import { ref } from 'vue'
import { Amount as TinyAmount } from '@opentiny/vue'
const value = ref(88.88)
</script>