More progress, committing to get assistance with TS

This commit is contained in:
Dane Everitt 2018-12-29 15:51:13 -08:00
parent a76bde5b1d
commit ed5ebe9155
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
8 changed files with 45 additions and 27 deletions

View file

@ -15,13 +15,14 @@
</div>
</template>
<script>
<script lang="ts">
import Vue from 'vue';
import Flash from '../Flash';
import ForgotPassword from "./ForgotPassword";
import LoginForm from "./LoginForm";
import TwoFactorForm from "./TwoFactorForm";
export default {
export default Vue.extend({
name: 'login',
data: function () {
return {
@ -41,5 +42,5 @@
ForgotPassword,
LoginForm,
},
}
});
</script>