feat: beta preparation + utf16 editor fix

This commit is contained in:
Nicolas Giard
2019-01-01 01:40:31 -05:00
parent 4bee20e664
commit 3b285c5074
24 changed files with 342 additions and 154 deletions

View File

@@ -16,7 +16,7 @@
slider-color='white'
show-arrows
dark
@input='tabChanged'
@change='tabChanged'
)
v-tab(key='0') Graph API Playground
v-tab(key='1') Graph API Map
@@ -67,7 +67,7 @@ let graphiQLInstance
export default {
data() {
return {
selectedTab: '0'
selectedTab: 0
}
},
mounted() {
@@ -76,7 +76,7 @@ export default {
methods: {
tabChanged (tabId) {
switch (tabId) {
case '1':
case 1:
this.renderVoyager()
break
}