Files
corner/src/views/Life.vue
T

37 lines
1.1 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>
<ClientOnly>
<TgBlog postsUrl="https://profile-api.hydev.org/exports/hykilp/posts.json">
<div class="title">
<h2>生活</h2>
<div class="subtitle">
<p>
在这个时间只会正向流动的世界里每当秒针划过刻度线就不可能再回到那里了每一刻都是我们的第一次也是最后一次二十岁人生中最有趣的这段时光只匆匆忙忙地经历一次太可惜了但是或许可以通过这里的照片和文字让未来的自己能够重新体验这些心情起伏这是这个频道的初衷
</p>
<p>
这里是我记录生活的地方没有固定格式和内容更新也会比较频繁
</p>
</div>
</div>
</TgBlog>
<template #fallback>
<div class="title">
<h2>生活</h2>
</div>
</template>
</ClientOnly>
</template>
<script lang="ts" setup>
import { TgBlog } from "tg-blog";
import 'tg-blog/dist/style.css'
</script>
<style lang="sass" scoped>
@use "../css/colors"
@use "../css/responsive"
.title
text-align: left
margin-bottom: 30px
</style>