docs: prepare for enterprise / oss split (#1238)

Signed-off-by: Bobby DeSimone <bobbydesimone@gmail.com>
This commit is contained in:
bobby 2020-08-09 20:45:43 -07:00 committed by GitHub
parent fbb367d393
commit 07be1e9530
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
19 changed files with 35 additions and 258 deletions

View 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>