修改友链
This commit is contained in:
63
pages/links.vue
Normal file
63
pages/links.vue
Normal file
@ -0,0 +1,63 @@
|
||||
<template lang="pug">
|
||||
.links
|
||||
.Info(v-if='Info')
|
||||
| {{ Info }}
|
||||
|
||||
h1.title
|
||||
| 首页友链
|
||||
ul
|
||||
li
|
||||
a(href='https://wintc.top/', target='_blank') 沐码小站
|
||||
li
|
||||
a(href='https://johnsonlee.site/', target='_blank') Johnson Blog
|
||||
li
|
||||
a(href='https://www.lfhacks.com/', target='_blank') LFhacks
|
||||
li
|
||||
a(href='https://www.ixiqin.com/', target='_blank') 西秦公子
|
||||
|
||||
h1.title
|
||||
| 内页友链
|
||||
ul
|
||||
li
|
||||
a(href='https://www.lzhpo.com/', target='_blank') 会打篮球的程序猿
|
||||
li
|
||||
a(href='http://www.zzfly.net/', target='_blank') 烟花易冷
|
||||
|
||||
h1.title
|
||||
| 暂时取消的友链
|
||||
ul
|
||||
li
|
||||
| 前端视角 (网站无法访问)
|
||||
|
||||
h1.title
|
||||
| 友链说明
|
||||
p
|
||||
| 本站友链遵循对等原则,即您的友链放置于首页,我的友链也放置于首页。
|
||||
p
|
||||
| 交换友链请通过左侧头像下方的联系方式与我联系。只要网站/博客能正常打开,不定时更新原创文章即可。
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
asyncData ({ app, params, $axios }) {
|
||||
return {
|
||||
Info: ''
|
||||
}
|
||||
},
|
||||
mounted () {
|
||||
this.$finishLoad()
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="stylus" scoped>
|
||||
.links
|
||||
width 100%
|
||||
height 100%
|
||||
padding 50px
|
||||
|
||||
.title
|
||||
margin-top 60px
|
||||
margin-bottom 20px
|
||||
font-weight 500
|
||||
</style>
|
||||
Reference in New Issue
Block a user