Add custom flash library that works as expected

This commit is contained in:
Dane Everitt 2018-05-26 14:50:38 -07:00
parent bab20812a0
commit 0a706d1b45
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
13 changed files with 233 additions and 37 deletions

View file

@ -1,5 +1,6 @@
<template>
<div>
<flash/>
<login-form
v-if="this.$route.name === 'login'"
v-bind:user="user"
@ -15,8 +16,9 @@
</template>
<script>
import LoginForm from "./LoginForm";
import Flash from '../Flash';
import ForgotPassword from "./ForgotPassword";
import LoginForm from "./LoginForm";
import TwoFactorForm from "./TwoFactorForm";
export default {
@ -34,6 +36,7 @@
},
},
components: {
Flash,
TwoFactorForm,
ForgotPassword,
LoginForm,