freetube/src/renderer/App.vue

35 lines
647 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" />
2020-09-20 13:35:53 +00:00
<transition
2020-02-16 18:30:00 +00:00
mode="out-in"
2020-09-20 13:35:53 +00:00
name="fade"
2020-02-16 18:30:00 +00:00
>
<!-- <keep-alive> -->
<RouterView
ref="router"
class="routerView"
:class="{ expand: !isOpen }"
/>
<!-- </keep-alive> -->
2020-09-20 13:35:53 +00:00
</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-17 12:23:50 +00:00
<style scoped src="./App.css" />