1
1
mirror of https://github.com/aelve/guide.git synced 2024-12-24 13:26:08 +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-toolbar-title>
<v-spacer></v-spacer> <v-spacer></v-spacer>
<search-field /> <search-field />
<v-toolbar-items>
<v-btn
flat
v-on:click="getApi"
>
Login
</v-btn>
</v-toolbar-items>
</v-toolbar> </v-toolbar>
</template> </template>
@ -29,9 +21,5 @@ import axios from 'axios'
Logo Logo
} }
}) })
export default class Toolbar extends Vue { export default class Toolbar extends Vue {}
async getApi() {
const { data } = await axios.get('api');
}
}
</script> </script>