no autocomplete

This commit is contained in:
Julien Calixte
2023-03-19 12:28:27 +01:00
parent 2bbe912d9f
commit 4fff32abcc

View File

@@ -95,11 +95,21 @@ const copyUrl = () => {
<form @submit.prevent> <form @submit.prevent>
<div> <div>
<label for="title">Title:</label> <label for="title">Title:</label>
<input type="text" id="title" v-model="projectTitle" /> <input
type="text"
id="title"
v-model="projectTitle"
autocomplete="false"
/>
</div> </div>
<div> <div>
<label for="target">Target date:</label> <label for="target">Target date:</label>
<input type="date" id="target" v-model="targetInput" /> <input
type="date"
id="target"
v-model="targetInput"
autocomplete="false"
/>
</div> </div>
<div> <div>
<button @click="copyUrl">copy url</button> <button @click="copyUrl">copy url</button>