♻️ Continued to migrate components

This commit is contained in:
2025-11-29 02:12:12 +08:00
parent 040e19025e
commit 54bf8cf915
10 changed files with 102 additions and 97 deletions

View File

@@ -1,22 +1,14 @@
<template>
<v-card
title="Post your reply"
prepend-icon="mdi-post-lamp"
flat
border
density="comfortable"
>
<v-card-text>
<v-textarea
placeholder="Talk about this post for a bit."
disabled
max-rows="5"
auto-grow
:hide-details="true"
></v-textarea>
<div class="flex justify-end mt-4">
<v-btn append-icon="mdi-send">Send</v-btn>
</div>
</v-card-text>
</v-card>
<n-card title="Post your reply" size="small" embedded>
<n-input
type="textarea"
placeholder="Talk about this post for a bit."
size="large"
:rows="5"
auto-grow
></n-input>
<div class="flex justify-end mt-4">
<n-button append-icon="mdi-send" size="small">Send</n-button>
</div>
</n-card>
</template>