2020-08-18 15:12:35 +02:00
|
|
|
<template>
|
2020-08-19 12:53:18 +02:00
|
|
|
<ui-modules :value="value" @input="$emit('input', $event)" :config="config" />
|
2020-08-18 15:12:35 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
props: {
|
2020-08-19 12:53:18 +02:00
|
|
|
value: {
|
|
|
|
|
type: [String, Object, Array]
|
|
|
|
|
},
|
2020-08-18 15:12:35 +02:00
|
|
|
config: Object
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-08-19 12:53:18 +02:00
|
|
|
</script>
|