forked from opentiny/tiny-vue
27 lines
468 B
Vue
27 lines
468 B
Vue
<template>
|
||
<div>
|
||
<tiny-country v-model="value" @change="change"></tiny-country>
|
||
<p>当前选中值:{{ value }}</p>
|
||
</div>
|
||
</template>
|
||
|
||
<script lang="jsx">
|
||
import { Country, Modal } from '@opentiny/vue'
|
||
|
||
export default {
|
||
components: {
|
||
TinyCountry: Country
|
||
},
|
||
data() {
|
||
return {
|
||
value: ''
|
||
}
|
||
},
|
||
methods: {
|
||
change(value) {
|
||
Modal.message({ message: '当前选中国家:' + value, status: 'info' })
|
||
}
|
||
}
|
||
}
|
||
</script>
|