tiny-vue/examples/sites/demos/pc/app/currency/size-composition-api.vue

26 lines
517 B
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div>
<tiny-currency v-model="value" size="medium" placeholder="请选择" @change="change"></tiny-currency>
<p>当前选中值{{ value }}</p>
</div>
</template>
<script setup>
import { ref } from 'vue'
import { Currency as TinyCurrency, Modal } from '@opentiny/vue'
const value = ref('VUV')
function change(value) {
Modal.message({ message: `当前值为 ${value}`, status: 'info' })
}
</script>
<style scoped>
p {
font-size: 14px;
line-height: 1.5;
padding: 16px 0;
}
</style>