mirror of
https://github.com/n8n-io/n8n-docs.git
synced 2025-11-20 17:48:34 +00:00
Attempt with empty Feedback and no window fix
This commit is contained in:
parent
9230e55cb7
commit
e06d3aa205
22
docs/.vuepress/components/Feedback.vue
Normal file
22
docs/.vuepress/components/Feedback.vue
Normal 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>
|
||||
@ -1,6 +0,0 @@
|
||||
<template>
|
||||
<div class="theme-container">
|
||||
Read time: {{$page.readingTime.text}}
|
||||
<Content/>
|
||||
</div>
|
||||
</template>
|
||||
14
docs/.vuepress/theme/Layout.vue
Normal file
14
docs/.vuepress/theme/Layout.vue
Normal 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>
|
||||
3
docs/.vuepress/theme/index.js
Normal file
3
docs/.vuepress/theme/index.js
Normal file
@ -0,0 +1,3 @@
|
||||
module.exports = {
|
||||
extend: '@vuepress/theme-default',
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user