Move everything back to vue SFCs
This commit is contained in:
parent
761704408e
commit
5bff8d99cc
58 changed files with 2558 additions and 2518 deletions
18
resources/assets/scripts/components/auth/Login.vue
Normal file
18
resources/assets/scripts/components/auth/Login.vue
Normal file
|
@ -0,0 +1,18 @@
|
|||
<template>
|
||||
<div>
|
||||
<Flash container="mb-2"/>
|
||||
<div>
|
||||
<router-view/>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import Vue from 'vue';
|
||||
import Flash from "../Flash.vue";
|
||||
|
||||
export default Vue.extend({
|
||||
name: 'Login',
|
||||
components: {Flash},
|
||||
});
|
||||
</script>
|
Reference in a new issue