tiny-vue/examples/sites/demos/pc/app/country/basic-usage-composition-api...

29 lines
555 B
Vue
Raw 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 class="demo-country-class">
<tiny-country v-model="value" @change="change"></tiny-country>
<p>当前选中值:{{ value }}</p>
</div>
</template>
<script setup lang="jsx">
import { ref } from 'vue'
import { TinyCountry, TinyModal } from '@opentiny/vue'
const value = ref('')
function change(value) {
TinyModal.message({ message: '当前选中国家' + value, status: 'info' })
}
</script>
<style scoped>
.demo-country-class {
width: 280px;
}
p {
font-size: 14px;
line-height: 1.5;
padding: 16px 0;
}
</style>