freetube/src/renderer/App.vue

35 lines
644 B
Vue

<template>
<div
id="app"
:class="{
hideOutlines: hideOutlines,
rightAligned: isRightAligned
}"
>
<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>
<ft-toast />
<ft-progress-bar
v-if="showProgressBar"
/>
</div>
</template>
<script src="./App.js" />
<style src="./themes.css" />
<style src="./videoJS.css" />
<style src="./App.css" />