this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add placeholder

+11 -2
+11 -2
src/components/architecture/crc-card.vue
··· 97 97 class="component-name" 98 98 v-if="editable" 99 99 v-model="componentName" 100 + placeholder="name" 100 101 /> 101 102 <h3 v-else> 102 103 {{ componentName }} ··· 118 119 </li> 119 120 </ol> 120 121 <form @submit.prevent="addResponsability" v-if="editable"> 121 - <input type="text" v-model="newResponsability" /> 122 + <input 123 + type="text" 124 + v-model="newResponsability" 125 + placeholder="responsability" 126 + /> 122 127 <button type="submit">+</button> 123 128 </form> 124 129 </div> ··· 131 136 </ol> 132 137 133 138 <form @submit.prevent="addCollaborator" v-if="editable"> 134 - <input type="text" v-model.trim="newCollaborator" /> 139 + <input 140 + type="text" 141 + v-model.trim="newCollaborator" 142 + placeholder="collaborator" 143 + /> 135 144 <button type="submit">+</button> 136 145 </form> 137 146 </div>