Files
mixtape/zero.Web.UI/App/editor/fields/countrypicker.vue
T
2020-06-30 12:12:31 +02:00

15 lines
260 B
Vue

<template>
<ui-countrypicker :value="value" @input="$emit('input', $event)" :limit="config.limit || 1" />
</template>
<script>
export default {
props: {
value: {
type: [String, Array]
},
config: Object
}
}
</script>