2020-02-16 18:30:00 +00:00
|
|
|
<template>
|
2020-09-16 02:55:19 +00:00
|
|
|
<div
|
|
|
|
id="app"
|
|
|
|
:class="{
|
2020-09-16 13:51:26 +00:00
|
|
|
hideOutlines: hideOutlines,
|
|
|
|
rightAligned: isRightAligned
|
2020-09-16 02:55:19 +00:00
|
|
|
}"
|
|
|
|
>
|
2020-02-16 18:30:00 +00:00
|
|
|
<top-nav ref="topNav" />
|
|
|
|
<side-nav ref="sideNav" />
|
|
|
|
<Transition
|
|
|
|
mode="out-in"
|
|
|
|
name="slide-up"
|
|
|
|
>
|
|
|
|
<!-- <keep-alive> -->
|
|
|
|
<RouterView
|
|
|
|
ref="router"
|
|
|
|
class="routerView"
|
|
|
|
:class="{ expand: !isOpen }"
|
|
|
|
/>
|
|
|
|
<!-- </keep-alive> -->
|
|
|
|
</Transition>
|
2020-06-15 19:08:42 +00:00
|
|
|
<ft-toast />
|
2020-08-31 21:35:22 +00:00
|
|
|
<ft-progress-bar
|
|
|
|
v-if="showProgressBar"
|
|
|
|
/>
|
2020-02-16 18:30:00 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./App.js" />
|
|
|
|
|
|
|
|
<style src="./themes.css" />
|
|
|
|
<style src="./videoJS.css" />
|
2020-09-17 12:23:50 +00:00
|
|
|
<style scoped src="./App.css" />
|