Skip to content

Commit 032c9d5

Browse files
authored
chore: remove beta banner from docs (vuejs#474)
1 parent 6607d8b commit 032c9d5

File tree

4 files changed

+8
-17
lines changed

4 files changed

+8
-17
lines changed

.github/pull_request_template.md

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
# ⚠️⚠️⚠️ DISCLAIMER ⚠️⚠️⚠️:
1+
## Description of Problem
22

3-
Thanks for your interest in submitting a PR! At this time, because the docs are in beta, the team is currently in the midst of changes. As a result, **we are not ready for additional contributions yet**.
3+
## Proposed Solution
44

5-
## How can I provide feedback?
6-
7-
To be respectful of your time and ideas, **please [create an issue](https://github.com/vuejs/docs-next/issues/new) instead of a pull request**. Otherwise, we will have to simply close your pull request at this time.
8-
9-
Thanks for your understanding!
5+
## Additional Information

src/.vuepress/components/BetaBanner.vue renamed to src/.vuepress/components/AppBanner.vue

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
<template>
22
<ClientOnly>
3-
<aside class="beta-banner" v-if="shouldShow">
4-
<p>
5-
<span class="hide-sm">⚠️ Beta Version:</span>
6-
Docs
7-
<span class="hide-sm">are</span> in development and subject to change.
8-
</p>
3+
<aside class="app-banner" v-if="shouldShow">
4+
<slot></slot>
95
<button ref="closeButton" @click="close">Close</button>
106
</aside>
117
</ClientOnly>
@@ -39,7 +35,7 @@ export default {
3935
<style lang="scss" scoped>
4036
@import '../theme/styles/mixins.scss';
4137
42-
.beta-banner {
38+
.app-banner {
4339
position: fixed;
4440
z-index: 21;
4541
top: 0;

src/.vuepress/theme/layouts/Layout.vue

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
@touchstart="onTouchStart"
66
@touchend="onTouchEnd"
77
>
8-
<BetaBanner />
98
<Navbar v-if="shouldShowNavbar" @toggle-sidebar="toggleSidebar" />
109

1110
<div class="sidebar-mask" @click="toggleSidebar(false)" />

src/guide/contributing/translations.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Vue has spread across the globe, with the core team being in at least half a doz
44

55
## Can we start translating Vue 3 docs?
66

7-
At this time, the Vue 3 docs are still in beta and subject to changes at any time. As a result, we would caution against any significant work since we are still collecting feedback and rewriting it as needed. When the docs are in release candidate phase, we will make sure to make an announcement so you can get started!
7+
Yes! We are ready for translation!
88

99
## How can I get involved with translations?
1010

11-
The best way to get started is to check out [this pinned issue for Vuejs.org](https://github.com/vuejs/vuejs.org/issues/2015) that contains active discussions on the various initiatives happening in the community.
11+
The best way to get started is to check out [this pinned issue](https://github.com/vuejs/docs-next/issues/478) that contains active discussions on the various initiatives happening in the community.

0 commit comments

Comments
 (0)