mirror of
https://github.com/MrUnknownDE/panel.git
synced 2026-04-24 17:23:46 +02:00
Move everything back to vue SFCs
This commit is contained in:
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 New Issue
Block a user