blog-client/pages/links.vue
2020-09-26 19:06:53 +08:00

64 lines
1.3 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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='http://www.zzfly.net/', target='_blank') 烟花易冷
li
a(href='https://www.lzhpo.com/', 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>