add debug page

This commit is contained in:
Front 2022-02-24 17:29:34 -05:00
parent 6584f2328b
commit 40a677a6f4
3 changed files with 30 additions and 15 deletions

View File

@ -1,15 +1,6 @@
<template> <template>
<div> <center>
<video controls :src="vidSrc" width="100%" height="300vh" /> <v-icon size="100">mdi-close-circle</v-icon>
</div> <h1 class="grey--text">Incomplete</h1>
</center>
</template> </template>
<script>
export default {
data() {
return {
vidSrc: "https://rr3---sn-ab5l6n6e.googlevideo.com/videoplayback?expire=1643101048&ei=F2fvYbegO4ythgbf6prgBw&ip=8.46.116.241&id=o-AKy6hy3pwbh5E7Q2oSThJtnBpBYdVDthEzO--siU1Pzb&itag=22&source=youtube&requiressl=yes&mh=3J&mm=31%2C29&mn=sn-ab5l6n6e%2Csn-ab5szn7l&ms=au%2Crdu&mv=m&mvi=3&pl=24&initcwndbps=1512500&vprv=1&mime=video%2Fmp4&ns=NmcjQCgOge6h_ERTK6R9hdcG&ratebypass=yes&dur=493.052&lmt=1631287826858240&mt=1643078960&fvip=3&fexp=24001373%2C24007246&c=WEB&txp=5532434&n=iEKpKJGuEiIbn0FFd167&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIhAMUsO4Jl50Kcm1ReQjtB7x5OcruOrJ6zs22OtXMhKER8AiA4H2VsoSePLS_uCSM4a4kpjGUTm4_CRPg_PJn_MIVXfw%3D%3D&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRQIhANGPdRlpAaW0kbCGaYOBacI8cFUkh49Eo3YgJN4_T3X_AiBU_LqddZ7VkX1vktQBR4ul2jGvI16oLA8rH3InKzAPEg%3D%3D"
}
}
}
</script>

View File

@ -14,14 +14,23 @@
</section> </section>
</v-card> </v-card>
<v-card>
<v-card-title>Debug</v-card-title>
<section>
<div style="color: #999;">This is just a temporary section for messing with the tool while it's still being worked on :)</div>
<v-btn to="/watch">Open Watch Page</v-btn>
</section>
</v-card>
</div> </div>
</template> </template>
<style scoped> <style scoped>
.mainContainer { .v-card {
padding: 1em; margin: 1em;
} }
section { section {
padding: 0 1em 1em 1em; padding: 0 1em 1em 1em;
} }

15
NUXT/pages/watch.vue Normal file
View File

@ -0,0 +1,15 @@
<template>
<div>
<video controls :src="vidSrc" width="100%" height="300vh" />
</div>
</template>
<script>
export default {
data() {
return {
vidSrc: "https://rr3---sn-ab5szne7.googlevideo.com/videoplayback?expire=1645763099&ei=uwUYYtSHI4LfhwaEnZ6ABg&ip=8.21.13.5&id=o-AEmRDpMZh3cbaO01nQqiY1Q-kA-3bLYhqXdVj-cRdCF3&itag=22&source=youtube&requiressl=yes&mh=Sw&mm=31%2C26&mn=sn-ab5szne7%2Csn-5uaeznyy&ms=au%2Conr&mv=m&mvi=3&pl=24&initcwndbps=2280000&vprv=1&mime=video%2Fmp4&ns=Q5aWzxFtqjKcRjIYToDTXRIG&ratebypass=yes&dur=51.432&lmt=1644587734017831&mt=1645741264&fvip=3&fexp=24001373%2C24007246&c=WEB&txp=5532434&n=-SThIpytHrY1AZDfq&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cratebypass%2Cdur%2Clmt&lsparams=mh%2Cmm%2Cmn%2Cms%2Cmv%2Cmvi%2Cpl%2Cinitcwndbps&lsig=AG3C_xAwRQIgYobPMzfuSBig1g__YwPOiKuNwDnMclv_kqfFLxXra-ACIQCcVOIHCfRcI98Wf_g1wdTCLMDBnOzdBtPL8kTsenjIIQ%3D%3D&sig=AOq0QJ8wRQIgJKQpvQMxCy-o_JsoSkirjx9cXOODoieVIXnnDugZBiMCIQDtIs-ggQJd5ZTXl6gVuAZxju9hh5dSRENbSIT6rgsfaw%3D%3D"
}
}
}
</script>