2019-08-24 03:06:57 +00:00
|
|
|
<template>
|
2019-11-01 11:15:53 +00:00
|
|
|
<div class="wrapper">
|
|
|
|
|
<div class="content">
|
|
|
|
|
<div class="columns">
|
2020-03-04 01:17:02 +00:00
|
|
|
<sidenav />
|
2020-12-01 00:16:25 +00:00
|
|
|
<main class="container">
|
2020-03-04 01:17:02 +00:00
|
|
|
<pw-header />
|
2019-12-08 03:50:09 +00:00
|
|
|
<nuxt />
|
2020-03-04 01:17:02 +00:00
|
|
|
<pw-footer />
|
2020-09-24 17:22:17 +00:00
|
|
|
</main>
|
2019-11-01 11:15:53 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2019-09-02 04:48:01 +00:00
|
|
|
</div>
|
2019-08-24 03:06:57 +00:00
|
|
|
</template>
|
2019-10-25 08:14:34 +00:00
|
|
|
|
2019-09-02 04:48:01 +00:00
|
|
|
<script>
|
2019-11-12 04:18:57 +00:00
|
|
|
export default {
|
|
|
|
|
beforeMount() {
|
2020-09-24 02:52:54 +00:00
|
|
|
let color = localStorage.getItem("THEME_COLOR") || "green"
|
|
|
|
|
document.documentElement.setAttribute("data-accent", color)
|
2019-11-12 04:18:57 +00:00
|
|
|
},
|
|
|
|
|
mounted() {
|
|
|
|
|
if (process.client) {
|
2020-02-25 02:06:23 +00:00
|
|
|
document.body.classList.add("afterLoad")
|
2019-11-12 04:18:57 +00:00
|
|
|
}
|
2020-01-09 00:31:31 +00:00
|
|
|
console.log(
|
2020-02-25 02:06:23 +00:00
|
|
|
"%cWe ❤︎ open source!",
|
|
|
|
|
"background-color:white;padding:8px 16px;border-radius:8px;font-size:32px;color:red;"
|
2020-02-24 18:44:50 +00:00
|
|
|
)
|
2020-01-09 00:31:31 +00:00
|
|
|
console.log(
|
2020-08-13 11:20:02 +00:00
|
|
|
"%cContribute: https://github.com/hoppscotch/hoppscotch",
|
2020-02-25 02:06:23 +00:00
|
|
|
"background-color:black;padding:4px 8px;border-radius:8px;font-size:16px;color:white;"
|
2020-02-24 18:44:50 +00:00
|
|
|
)
|
2019-11-12 04:18:57 +00:00
|
|
|
},
|
2020-01-30 15:05:22 +00:00
|
|
|
beforeDestroy() {
|
2020-02-25 02:06:23 +00:00
|
|
|
document.removeEventListener("keydown", this._keyListener)
|
2020-02-24 18:44:50 +00:00
|
|
|
},
|
|
|
|
|
}
|
2019-08-24 03:06:57 +00:00
|
|
|
</script>
|