freetube/src/renderer/App.vue

35 lines
644 B
Vue
Raw Normal View History

2020-02-16 18:30:00 +00:00
<template>
2020-09-16 02:55:19 +00:00
<div
id="app"
:class="{
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>
<ft-toast />
<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-16 02:55:19 +00:00
<style src="./App.css" />