File tree Expand file tree Collapse file tree 1 file changed +24
-15
lines changed Expand file tree Collapse file tree 1 file changed +24
-15
lines changed Original file line number Diff line number Diff line change 194
194
required =" "
195
195
aria-label =" Subject"
196
196
>
197
- <option selected disabled
198
- >Select Project Type</option
199
- >
200
- <option value =" web"
201
- >Web Application</option
202
- >
203
- <option value =" mobile"
204
- >Mobile Applicaiton</option
205
- >
206
- <option value =" design"
207
- >UI/UX Design</option
208
- >
209
- <option value =" graphic"
210
- >Branding</option
197
+ <option
198
+ v-for =" category in categories"
199
+ :key =" category"
200
+ :value =" category.value"
201
+ >{{ category.name }}</option
211
202
>
212
203
</select >
213
204
</div >
237
228
class =" modal-footer py-3 px-5 border0-t text-right"
238
229
>
239
230
<button
240
- class =" px-6 py-2 bg-indigo-400 rounded-lg font-bold text-primary-light"
231
+ class =" px-6 py-2 bg-indigo-400 hover:bg-indigo-500 rounded-lg font-bold text-primary-light"
241
232
@click =" showModal()"
242
233
>
243
234
Close
@@ -266,6 +257,24 @@ export default {
266
257
isOpen: false ,
267
258
theme: ' ' ,
268
259
modal: false ,
260
+ categories: [
261
+ {
262
+ value: ' web' ,
263
+ name: ' Web Application' ,
264
+ },
265
+ {
266
+ value: ' mobile' ,
267
+ name: ' Mobile Applicaiton' ,
268
+ },
269
+ {
270
+ value: ' ui-ux' ,
271
+ name: ' UI/UX Design' ,
272
+ },
273
+ {
274
+ value: ' branding' ,
275
+ name: ' Branding' ,
276
+ },
277
+ ],
269
278
};
270
279
},
271
280
You can’t perform that action at this time.
0 commit comments