登录页面 + 发表页面 修正

This commit is contained in:
2022-07-31 06:01:58 +08:00
parent 53f36433d7
commit a84fe2dbbf
4 changed files with 109 additions and 38 deletions

View File

@@ -1,18 +1,19 @@
<template lang="pug">
.thread-create
.header
h1.title {{ thread.title }}
.info info
//span.user {{ thread.user.name }}
//span.date {{ rwdate(thread.createdAt) }}
//span.view {{ thread.views }}
.tags
span.tag test
span.tag demo
.content.circumscription
input.title(v-model="thread.title")
textarea.data(v-model="thread.data", rows="32")
button.submit(@click="submit") 发表
Drawer
.thread-create
.header
h1.title {{ thread.title }}
.info info
//span.user {{ thread.user.name }}
//span.date {{ rwdate(thread.createdAt) }}
//span.view {{ thread.views }}
.tags
span.tag test
span.tag demo
.content.circumscription
input.title(v-model="thread.title")
textarea.data(v-model="thread.data", rows="32")
button.submit(@click="submit") 发表
</template>
<script>