Skip to content

Commit

Permalink
🔖 v0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
BeiyanYunyi committed Feb 6, 2024
1 parent ed90be5 commit febde9b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "pjts-suggestion-box",
"description": "Suggestion box for Project Trans",
"version": "0.0.0",
"version": "0.0.1",
"type": "module",
"packageManager": "[email protected]",
"license": "MIT",
Expand Down
8 changes: 6 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
<template>
<form class="flex flex-col border-1 border-dashed rounded-md" @submit.prevent="handleSubmit">
<textarea name="suggestionText" class="resize-none p-2 min-h-0 outline-none border-none" />
<textarea
name="suggestionText"
class="resize-none p-2 min-h-0 outline-none border-none"
:placeholder="placeholder"
/>
<hr class="border-t-1 border-b-none w-full border-dotted" />
<div class="flex justify-around px-2 pb-2">
<label class="cursor-pointer i-mdi:paperclip block text-2xl">
Expand Down Expand Up @@ -37,7 +41,7 @@
import 'uno.css';
import { ref, watch } from 'vue';
const props = defineProps<{ sendText: string; targetURL: string }>();
const props = defineProps<{ sendText: string; targetURL: string; placeholder: string }>();
const files = ref<FileList | null>(null);
Expand Down

0 comments on commit febde9b

Please sign in to comment.