mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-09 23:27:43 +02:00
docs: prepare for enterprise / oss split (#1238)
Signed-off-by: Bobby DeSimone <bobbydesimone@gmail.com>
This commit is contained in:
parent
fbb367d393
commit
07be1e9530
19 changed files with 35 additions and 258 deletions
17
docs/.vuepress/components/Redirect.vue
Normal file
17
docs/.vuepress/components/Redirect.vue
Normal file
|
@ -0,0 +1,17 @@
|
|||
<template> </template>
|
||||
|
||||
<script>
|
||||
/** Redirects to the given 'to' url, which is relative to the current location. */
|
||||
export default {
|
||||
name: "Redirect",
|
||||
props: {
|
||||
to: {
|
||||
type: String,
|
||||
required: true,
|
||||
},
|
||||
},
|
||||
beforeMount() {
|
||||
document.location.replace(this.to);
|
||||
},
|
||||
};
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue