You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
468 B
18 lines
468 B
<script>
|
|
const Tree = () => import('./Tree').then(_ => _.default)
|
|
const Tab = () => import('./Tab').then(_ => _.default)
|
|
|
|
export default {
|
|
name: "RegionSelector",
|
|
|
|
functional: true,
|
|
|
|
props: {
|
|
type: {type: String, default: 'tab', validator: v => ['tree', 'tab'].includes(v)}
|
|
},
|
|
|
|
render(h, context) {
|
|
return h(context.props.type === 'tree' ? Tree : Tab, context.data)
|
|
}
|
|
}
|
|
</script>
|
|
|