# Consul::Partition::Selector
A conditional, autoloading, menu component specifically for making it easy to select partitions.
Please note:
- Currently at least, you must add this inside of a `<ul>` element.
- For the moment, make sure you have enabled partitions using developer debug
cookies.
```hbs preview-template
<ul>
<Consul::Partition::Selector
@dc={{hash
Name='dc-1'
}}
@nspace='default'
@partition='default'
@partitions={{or this.partitions (array)}}
@onchange={{action (mut this.partitions) value="data"}}
/>
</ul>
```
## Arguments
| Argument/Attribute | Type | Default | Description |
| --- | --- | --- | --- |
| `dc` | `object` | | The current datacenter |
| `nspace` | `string` | | The name of the current namespace |
| `partition` | `string` | | The name of the current partition |
| `partitions` | `array` | | A list of partition models/objects to use for the selector |
| `onchange` | `function` | | An event handler, for when partitions are loaded. You probably want to update `@partitions` using this. |
## See
- [Template Source Code](./index.hbs)
---