1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
| <template>
| <div>
| <div>
| <p>备案号:
| <a href="http://www.miitbeian.gov.cn/" target="_blank">粤ICP备19000592号-1</a>
| </p>
| </div>
|
| <div style="position: fixed;right: -3px;bottom: -20px;">
| <a-col v-bind="showMain">
| <p><a href="https://www.foreverblog.cn/go.html" target="_blank"> <img
| src="https://img.foreverblog.cn/wormhole_3.gif" alt="" style="width:auto;height:32px;"
| title="穿梭虫洞-随机访问十年之约友链博客"> </a>.</p>
| </a-col>
| </div>
|
|
| </div>
|
| </template>
|
| <script>
| document.write(unescape(
| "%3Cspan id='cnzz_stat_icon_1276380514'%3E%3C/span%3E%3Cscript src='https://s23.cnzz.com/z_stat.php%3Fid%3D1276380514%26show%3Dpic1' type='text/javascript'%3E%3C/script%3E"
| ));
|
| export default {
| data() {
| return {
| showMain: {
| xs: 0,
| sm: 0,
| md: {
| span: 1,
| },
| lg: {
| span: 1,
| },
| xl: {
| span: 1,
| },
| xxl: {
| span: 1,
| },
| }
| }
| }
| }
| </script>
|
| <style>
| #cnzz_stat_icon_1276380514 {
| display: none;
| }
| </style>
|
|