.thread
.header
h1.title {{ thread.title }}
.info
span.user {{ thread.user.name }}
span.date {{ rwdate(thread.createdAt) }}
span.view {{ thread.views }}
.tags
span.tag test
span.tag demo
.content.main-width
p {{ thread.data }}
PostList(:data="postlist")
.post-create(v-if="account.online")
.avatar
.content
textarea(v-model="post.data", rows="12")
button.submit(@click="createpost") 发表