Merge pull request #559 from ivov/attempt-with-empty-feedback-and-no-window-fix

Attempt with empty feedback and no window fix
This commit is contained in:
Iván Ovejero 2021-06-22 16:32:23 +02:00 committed by GitHub
commit 58abb1de33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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',
}