docs: update doc
parent
2b1b81b6ff
commit
7779c0469c
|
@ -0,0 +1,26 @@
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<div ref="inner" class="wwads-cn wwads-horizontal" data-id="62" style="max-width: 350px" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
|
||||||
|
export default {
|
||||||
|
mounted() {
|
||||||
|
this.load();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
load() {
|
||||||
|
if (this.scriptDom) {
|
||||||
|
this.$el.removeChild(this.scriptDom);
|
||||||
|
}
|
||||||
|
this.$refs.inner.innerHTML = '';
|
||||||
|
const e = document.createElement('script');
|
||||||
|
e.src = 'https://wwads.cn/js/makemoney.js';
|
||||||
|
e.async = true;
|
||||||
|
this.$el.appendChild(e);
|
||||||
|
this.scriptDom = e;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
|
@ -17,7 +17,7 @@ export default {
|
||||||
return {
|
return {
|
||||||
visibleAdblockBanner: !!this.demoContext.blocked,
|
visibleAdblockBanner: !!this.demoContext.blocked,
|
||||||
value: null,
|
value: null,
|
||||||
showTopBanner: !localStorage.getItem('notification-key-2.0'),
|
showTopBanner: !localStorage.getItem('notification-key-2.2'),
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
|
@ -92,21 +92,11 @@ export default {
|
||||||
{isCN && this.showTopBanner && (
|
{isCN && this.showTopBanner && (
|
||||||
<div class="global-notification">
|
<div class="global-notification">
|
||||||
<span>
|
<span>
|
||||||
|
当前文档是 1.x 版本,如需使用 Vue 3 请访问
|
||||||
<a href="https://2x.antdv.com/" target="_blank">
|
<a href="https://2x.antdv.com/" target="_blank">
|
||||||
2.0 正式版
|
2.x
|
||||||
</a>
|
</a>
|
||||||
已发布,更快、更小、更易用
|
版本文档
|
||||||
</span>
|
|
||||||
<br />
|
|
||||||
<span style="padding: 5px 0; display: inline-block;">
|
|
||||||
支持 Vue 3.0,全新 Composition API 文档,TS、JS 双示例
|
|
||||||
</span>
|
|
||||||
<br />
|
|
||||||
<span>
|
|
||||||
<a href="https://store.antdv.com/pro/" target="_blank">
|
|
||||||
Vue3 Admin Pro
|
|
||||||
</a>
|
|
||||||
同步更新,支持多种布局、多标签页、暗黑主题等
|
|
||||||
</span>
|
</span>
|
||||||
<a-icon
|
<a-icon
|
||||||
type="close"
|
type="close"
|
||||||
|
@ -118,21 +108,11 @@ export default {
|
||||||
{!isCN && this.showTopBanner && (
|
{!isCN && this.showTopBanner && (
|
||||||
<div class="global-notification">
|
<div class="global-notification">
|
||||||
<span>
|
<span>
|
||||||
|
You’re browsing the documentation for v1.x (support vue 2).
|
||||||
<a href="https://2x.antdv.com/" target="_blank">
|
<a href="https://2x.antdv.com/" target="_blank">
|
||||||
2.0 release
|
Click here
|
||||||
</a>
|
</a>
|
||||||
Faster, Smaller, Easier
|
for v2.x(support vue 3) documentation.
|
||||||
</span>
|
|
||||||
<br />
|
|
||||||
<span style="padding: 5px 0; display: inline-block;">
|
|
||||||
Support Vue 3、New Composition API document、 TS, JS dual examples
|
|
||||||
</span>
|
|
||||||
<br />
|
|
||||||
<span>
|
|
||||||
<a href="https://store.antdv.com/pro/?lang=en" target="_blank">
|
|
||||||
Vue3 Admin Pro
|
|
||||||
</a>
|
|
||||||
is updated synchronously, supports multiple layouts, dark themes, etc.
|
|
||||||
</span>
|
</span>
|
||||||
<a-icon
|
<a-icon
|
||||||
type="close"
|
type="close"
|
||||||
|
|
|
@ -10,7 +10,10 @@
|
||||||
</a-carousel>
|
</a-carousel>
|
||||||
</template>
|
</template>
|
||||||
<template v-else-if="showGoogleAd">
|
<template v-else-if="showGoogleAd">
|
||||||
<GoogleAdsTop :key="`GoogleAdsTop_${$route.path}`" />
|
<template v-if="isCN">
|
||||||
|
<WWAds :key="`WWAds_${$route.path}`" />
|
||||||
|
</template>
|
||||||
|
<GoogleAdsTop v-else :key="`GoogleAdsTop_${$route.path}`" />
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -18,12 +21,14 @@
|
||||||
<script>
|
<script>
|
||||||
import moment from 'moment';
|
import moment from 'moment';
|
||||||
import GoogleAdsTop from './GoogleAdsTop';
|
import GoogleAdsTop from './GoogleAdsTop';
|
||||||
|
import WWAds from './WWAds.vue';
|
||||||
const isEffective = (start, end) => {
|
const isEffective = (start, end) => {
|
||||||
return moment().isBetween(start, end);
|
return moment().isBetween(start, end);
|
||||||
};
|
};
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
GoogleAdsTop,
|
GoogleAdsTop,
|
||||||
|
WWAds,
|
||||||
},
|
},
|
||||||
props: ['isCN', 'isMobile'],
|
props: ['isCN', 'isMobile'],
|
||||||
data() {
|
data() {
|
||||||
|
|
Loading…
Reference in New Issue