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

23 lines
397 B
Vue
Raw Normal View History

2020-04-30 15:35:09 +02:00
<template>
<ui-iconpicker :value="value" @input="$emit('input', $event)" :disabled="disabled" :set="set" />
2020-04-30 15:35:09 +02:00
</template>
<script>
export default {
props: {
value: {
type: String
},
2020-09-17 11:26:23 +02:00
disabled: {
type: Boolean,
default: false
},
set: {
type: String,
default: 'feather'
},
2020-04-30 15:35:09 +02:00
config: Object
}
}
</script>