no autocomplete
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user