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

Signed-off-by: Bobby DeSimone <bobbydesimone@gmail.com>

Co-authored-by: bobby <1544881+desimone@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2020-08-09 21:05:34 -07:00 committed by GitHub
parent 4e1c99c897
commit f03ea99649
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>