Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .vitepress/inlined-scripts/restorePreference.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
restore('vue-docs-prefer-composition', 'prefer-composition')
restore('vue-docs-prefer-sfc', 'prefer-sfc', true)

// window.__VUE_BANNER_ID__ = ''
// restore(`vue-docs-banner-${__VUE_BANNER_ID__}`, 'banner-dismissed')
window.__VUE_BANNER_ID__ = 'VS-FW'
restore(`vue-docs-banner-${__VUE_BANNER_ID__}`, 'banner-dismissed')
})()
209 changes: 206 additions & 3 deletions .vitepress/theme/components/Banner.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,220 @@ let open = $ref(true)
function dismiss() {
open = false
document.documentElement.classList.add('banner-dismissed')
localStorage.setItem(`vue-docs-banner-${__VUE_BANNER_ID__}`, 'true')
localStorage.setItem(`vue-docs-banner-${window.__VUE_BANNER_ID__}`, 'true')
}
</script>

<template>
<div class="banner" v-if="open"></div>
<div class="banner" v-if="open">
<a
id="vs"
href="https://vueschool.io/free-weekend?friend=vuejs&utm_source=vuejs&utm_medium=website&utm_campaign=affiliate&utm_content=top_banner"
target="_blank"
rel="noreferrer">
<div
class="vs-background-wrapper">
<div class="vs-logo">
<img src="/images/vueschool/vs-iso.svg" class="logo-small">
<img src="/images/vueschool/vs-logo.svg" class="logo-big">
</div>
<div class="vs-core">
<div class="vs-slogan-wrapper">
<div class="vs-slogan">
Free Weekend 1st & 2nd of October
</div>
<div class="vs-subline">
Get Access to ALL Vue School premium courses
</div>
</div>
<div class="vs-button-wrapper">
<div class="vs-button">
Join for Free
</div>
</div>
</div>
<div
id="vs-close"
class="vs-close"
@click.stop.prevent="dismiss">
<img src="/images/vueschool/close.svg" alt="Close">
</div>
</div>
</a>
</div>
</template>

<style>
html:not(.banner-dismissed) {
--vt-banner-height: 60px;
--vt-banner-height: 72px;
}

#vs {
background-color: #0A1124;
box-sizing: border-box;
color: #fff;
font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
position: fixed;
left: 0;
right: 0;
top: 0;
z-index: 100;
height: 72px;
background: linear-gradient(to left, #161a35, #283065);
line-height: 1;
}

#vs .vs-background-wrapper {
align-items: center;
justify-content: center;
display: flex;
padding: 0 10px;
height: 100%;
width: 100%;
background-image: url(/images/vueschool/bg-mobile.png);
background-repeat: no-repeat;
background-size: cover;
background-position: top right;
}

#vs:hover {
text-decoration: none;
}

#vs:hover .vs-core .vs-button {
background-image: linear-gradient(to bottom, #5ccc45, #419E2D), linear-gradient(to bottom, #388f26, #50b83b);
}

#vs .vs-logo {
position: absolute;
left: 10px;
}

#vs .vs-logo .logo-big {
display: none;
}

#vs .vs-core {
display: flex;
align-items: center;
width: 288px;
}

#vs .vs-core .vs-slogan-wrapper {
text-align: center;
width: 170px;
margin: 0 auto;
}

#vs .vs-core .vs-slogan {
color: #fff;
font-weight: bold;
font-size: 10px;
}

#vs .vs-core .vs-subline {
color: #c6cdf7;
font-size: 10px;
margin-top: 4px;
}

#vs .vs-core .vs-button-wrapper {
padding: 2px;
background-image: linear-gradient(to bottom, #388f26, #50b83b);
border-radius: 60px;
overflow: hidden;
}

#vs .vs-core .vs-button {
border-radius: 60px;
color: #FFF;
padding: 8px 6px;
background-image: linear-gradient(to bottom, #5ccc45, #368c24), linear-gradient(to bottom, #388f26, #50b83b);
font-weight: bold;
text-transform: uppercase;
text-align: center;
font-size: 10px;
letter-spacing: 0.3px;
white-space: nowrap;
}

#vs .vs-close {
right: 0;
position: absolute;
padding: 10px;
}

#vs .vs-close:hover {
color: #56d8ff;
}

@media (min-width: 680px) {
#vs .vs-background-wrapper {
background-image: url(/images/vueschool/bg-tablet.svg);
}

#vs .vs-logo {
left: 20px;
}

#vs .vs-logo .logo-small {
display: none;
}

#vs .vs-logo .logo-big {
display: inline-block;
width: 90px;
}

#vs .vs-core {
width: auto;
margin-right: -60px;
}

#vs .vs-core .vs-slogan-wrapper {
margin: 0 12px 0 0;
width: auto;
}

#vs .vs-core .vs-slogan {
font-size: 16px;
}

#vs .vs-core .vs-subline {
font-size: 15px;
text-align: left;
}

#vs .vs-core .vs-button {
font-size: 13px;
padding: 8px 15px;
}

#vs .vs-close {
right: 20px;
}
}

@media (min-width: 900px) {
#vs .vs-background-wrapper {
background-image: url(/images/vueschool/bg-desktop.svg);
background-position: top right -300px;
}

#vs .vs-logo .logo-big {
display: inline-block;
width: auto;
}

#vs .vs-core {
margin-right: 0;
}
}

@media (min-width: 1280px) {
#vs .vs-background-wrapper {
background-position: top right;
}
}
</style>

Expand Down
4 changes: 2 additions & 2 deletions .vitepress/theme/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ import {
import SponsorsAside from './components/SponsorsAside.vue'
import VueJobs from './components/VueJobs.vue'
import VueSchoolLink from './components/VueSchoolLink.vue'
// import Banner from './components/Banner.vue'
import Banner from './components/Banner.vue'
import WwAds from './components/WwAds.vue'

export default Object.assign({}, VPTheme, {
Layout: () => {
// @ts-ignore
return h(VPTheme.Layout, null, {
// banner: () => h(Banner),
banner: () => h(Banner),
'sidebar-top': () => h(PreferenceSwitch),
'aside-mid': () => h(SponsorsAside),
'aside-bottom': () => h(WwAds)
Expand Down
4 changes: 4 additions & 0 deletions src/api/options-lifecycle.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,8 @@

在一个响应式依赖被组件的渲染作用追踪后调用。

**这个钩子仅在开发模式下可用,且在服务器端渲染期间不会被调用。**

- **类型**

```ts
Expand All @@ -234,6 +236,8 @@

在一个响应式依赖被组件触发了重新渲染之后调用。

**这个钩子仅在开发模式下可用,且在服务器端渲染期间不会被调用。**

- **类型**

```ts
Expand Down
Loading