blog-client/pages/links.vue

64 lines
1.2 KiB
Vue
Raw Permalink Normal View History

2020-09-26 19:03:34 +08:00
<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
h1.title
| 内页友链
ul
li
a(href='http://www.zzfly.net/', target='_blank') 烟花易冷
h1.title
| 暂时取消的友链
ul
li
| 前端视角 网站无法访问
2021-08-11 12:37:33 +08:00
li
2021-08-11 12:35:15 +08:00
| 会打篮球的程序猿 网站无法访问
2021-08-11 12:37:33 +08:00
li
2021-08-11 12:35:15 +08:00
| 西秦公子 友链长期缺失
2020-09-26 19:03:34 +08:00
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>