Files
mixtape/zero.Web.UI/App/editor/fields/iconPicker.vue
T

15 lines
221 B
Vue

<template>
<ui-iconpicker :value="value" @input="$emit('input', $event)" />
</template>
<script>
export default {
props: {
value: {
type: String
},
config: Object
}
}
</script>