mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-29 01:34:45 +02:00
19 lines
322 B
Vue
19 lines
322 B
Vue
<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>
|