Files
mixtape/zero.Web.UI/App/editor/fields/pagepicker.vue
T
2020-10-29 21:44:22 +01:00

24 lines
441 B
Vue

<template>
<ui-pagepicker :config="config" :value="value" @input="$emit('input', $event)" :disabled="disabled" :limit="1" />
</template>
<script>
export default {
props: {
value: {
type: [String, Array],
default: null
},
disabled: {
type: Boolean,
default: false
},
limit: {
type: Number,
default: 1
},
config: Object
},
}
</script>