mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-10 12:25:02 +00:00
14 lines
212 B
Vue
14 lines
212 B
Vue
<template>
|
|
<a v-bind:href="env.API_URL + '/auth/login'">Login</a>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
|
|
computed: {
|
|
blah() {
|
|
return this.$state.apiKey;
|
|
}
|
|
}
|
|
};
|
|
</script>
|