mirror of
https://github.com/kevin-DL/team-management.git
synced 2026-01-11 18:54:33 +00:00
21 lines
299 B
Vue
21 lines
299 B
Vue
<template>
|
|
<div>
|
|
<button @click="login"> Login/Register </button>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "login",
|
|
methods: {
|
|
login: function () {
|
|
this.$auth.loginWith('auth0')
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|