mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-21 13:33:57 +00:00
23 lines
532 B
Vue
23 lines
532 B
Vue
<template>
|
|
<select-component :options="selectableOptions" :value="value" @input="(val) => {$emit('input', val)}"></select-component>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
props: {
|
|
value: {
|
|
required: false
|
|
},
|
|
section: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
selectableOptions: {
|
|
type: Array,
|
|
required: true,
|
|
default: () => []
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|