Attempt with empty Feedback and no window fix

This commit is contained in:
Iván Ovejero 2021-06-22 16:31:45 +02:00
parent 9230e55cb7
commit e06d3aa205
4 changed files with 39 additions and 6 deletions

View File

@ -0,0 +1,22 @@
<template>
<div>
HELLO
</div>
</template>
<script>
export default {
data() {
return {}
},
}
</script>
<style scoped>
.btn {
cursor: pointer;
color: #bfbfbf;
padding-right: 16px;
padding-top: 4px;
}
</style>

View File

@ -1,6 +0,0 @@
<template>
<div class="theme-container">
Read time: {{$page.readingTime.text}}
<Content/>
</div>
</template>

View File

@ -0,0 +1,14 @@
<template>
<Layout>
<template slot="page-bottom">
<Feedback />
</template>
</Layout>
</template>
<script>
import Layout from "@vuepress/theme-default/layouts/Layout.vue";
export default {
components: { Layout },
};
</script>

View File

@ -0,0 +1,3 @@
module.exports = {
extend: '@vuepress/theme-default',
}