- wip
This commit is contained in:
@@ -14,8 +14,12 @@ const form = useForm({
|
||||
project_url: null,
|
||||
project_version: null,
|
||||
description: null,
|
||||
visible: false,
|
||||
visible: Boolean(false),
|
||||
});
|
||||
|
||||
function createProject() {
|
||||
form.post('/dashboard/project');
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
@@ -25,7 +29,7 @@ const form = useForm({
|
||||
<h1 class="text-3xl font-roboto font-light">Nowy projekt</h1>
|
||||
</header>
|
||||
<div>
|
||||
<form class="flex flex-col gap-4" @submit.prevent>
|
||||
<form class="flex flex-col gap-4" @submit.prevent="createProject">
|
||||
<Input
|
||||
id="title"
|
||||
label="Tytuł"
|
||||
|
||||
Reference in New Issue
Block a user