mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-06 02:33:48 +00:00
35 lines
918 B
Vue
35 lines
918 B
Vue
<template>
|
|
<AuthContentWrapper ref="auth" class="h-screen">
|
|
<AuthContent :visible="true">
|
|
<Headline
|
|
title="You Are Nearly Here!"
|
|
description="Just click on the button below."
|
|
/>
|
|
|
|
<a :href="`${$store.getters.config.host}/sign-in`" target="_blank">
|
|
<AuthButton
|
|
class="mb-12 w-full justify-center md:w-min"
|
|
icon="chevron-right"
|
|
text="Visit Demo"
|
|
/>
|
|
</a>
|
|
</AuthContent>
|
|
</AuthContentWrapper>
|
|
</template>
|
|
<script>
|
|
import AuthContentWrapper from '../components/Layout/AuthPages/AuthContentWrapper'
|
|
import AuthContent from '../components/Layout/AuthPages/AuthContent'
|
|
import AuthButton from '../components/UI/Buttons/AuthButton'
|
|
import Headline from '../components/UI/Labels/LogoHeadline'
|
|
|
|
export default {
|
|
name: 'Demo',
|
|
components: {
|
|
AuthContentWrapper,
|
|
AuthContent,
|
|
AuthButton,
|
|
Headline,
|
|
},
|
|
}
|
|
</script>
|