Skip to content

Instantly share code, notes, and snippets.

@mafellows
Created April 14, 2020 05:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mafellows/607d80b02b5a63dccff753a3cef9ea59 to your computer and use it in GitHub Desktop.
Save mafellows/607d80b02b5a63dccff753a3cef9ea59 to your computer and use it in GitHub Desktop.
<template>
<div>
<amplify-authenticator v-bind:authConfig="authConfig"/>
</div>
</template
<script>
import { Auth } from "aws-amplify";
export default {
name: 'SignIn',
data() {
return {
authConfig: {
signInConfig: {
isSignUpDisplayed: false
}
}
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment