1
1
mirror of https://github.com/aelve/guide.git synced 2024-12-23 12:52:31 +03:00

Login button removed

This commit is contained in:
zeot 2019-01-14 13:34:18 +04:00
parent ffa4fc9390
commit a82af59927

View File

@ -5,14 +5,6 @@
</v-toolbar-title>
<v-spacer></v-spacer>
<search-field />
<v-toolbar-items>
<v-btn
flat
v-on:click="getApi"
>
Login
</v-btn>
</v-toolbar-items>
</v-toolbar>
</template>
@ -29,9 +21,5 @@ import axios from 'axios'
Logo
}
})
export default class Toolbar extends Vue {
async getApi() {
const { data } = await axios.get('api');
}
}
export default class Toolbar extends Vue {}
</script>