|
@@ -5,6 +5,17 @@
|
|
|
</div>
|
|
|
<div class="panel-body">
|
|
|
<form role="form" id="character">
|
|
|
+ <div class="form-group">
|
|
|
+ <div class="btn-group btn-group-justified">
|
|
|
+ <v-select placeholder="No region selected"
|
|
|
+ v-model="region.value"
|
|
|
+ :options="region.options"
|
|
|
+ value="value"
|
|
|
+ search justified required
|
|
|
+ close-on-select>
|
|
|
+ </v-select>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
<div class="form-group">
|
|
|
<div class="btn-group btn-group-justified">
|
|
|
<v-select placeholder="No realm selected"
|
|
@@ -31,17 +42,42 @@ export default {
|
|
|
name: 'character',
|
|
|
data () {
|
|
|
return {
|
|
|
+ region: {
|
|
|
+ value: 'eu',
|
|
|
+ options: [
|
|
|
+ {value: 'eu', label: 'Europe'},
|
|
|
+ {value: 'us', label: 'United States'},
|
|
|
+ {value: 'kr', label: 'Korea'},
|
|
|
+ {value: 'tw', label: 'Taiwan'}
|
|
|
+ ]
|
|
|
+ },
|
|
|
realm: {
|
|
|
- value: 'Neptulon',
|
|
|
+ value: '',
|
|
|
options: [
|
|
|
- 'Neptulon',
|
|
|
- 'Darksorrow',
|
|
|
- 'Darkspear'
|
|
|
]
|
|
|
},
|
|
|
name: ''
|
|
|
}
|
|
|
},
|
|
|
+ methods: {
|
|
|
+ getData: function () {
|
|
|
+ this.$http.get(this.apiEndpoint + '/realms/' + this.region.value)
|
|
|
+ .then(response => {
|
|
|
+ console.log(response)
|
|
|
+ this.realm.options = response.body
|
|
|
+ }, response => {
|
|
|
+ console.error(response)
|
|
|
+ })
|
|
|
+ }
|
|
|
+ },
|
|
|
+ watch: {
|
|
|
+ 'region.value': function (oldVal, newVal) {
|
|
|
+ this.getData()
|
|
|
+ }
|
|
|
+ },
|
|
|
+ mounted: function () {
|
|
|
+ this.getData()
|
|
|
+ },
|
|
|
components: {
|
|
|
vSelect
|
|
|
}
|