-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #62 from Geode-solutions/fix/clean_pages
fix(pages): clean unused pages in app
- Loading branch information
Showing
9 changed files
with
105 additions
and
250 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<template> | ||
<v-dialog | ||
v-model="props.show_dialog" | ||
@click:outside="emit('close')" | ||
max-width="800px" | ||
radius="20px" | ||
class="text-center" | ||
> | ||
<v-sheet border="md"> | ||
<v-card color="#3c9983"> | ||
<v-card-title> | ||
<h3 class="mt-4">New Project</h3> | ||
</v-card-title> | ||
<v-card-text> | ||
<v-container> | ||
<v-row> | ||
<v-col> | ||
<v-text-field label="Project Name" required></v-text-field> | ||
</v-col> | ||
</v-row> | ||
</v-container> | ||
</v-card-text> | ||
<v-card-actions justify-center> | ||
<v-btn | ||
variant="outlined" | ||
color="white" | ||
text | ||
@click="emit('close')" | ||
class="ml-8 mb-4" | ||
>Close</v-btn | ||
> | ||
<v-btn | ||
variant="outlined" | ||
class="mb-4" | ||
color="white" | ||
text | ||
@click="emit('close')" | ||
>Create</v-btn | ||
> | ||
</v-card-actions> | ||
</v-card> | ||
</v-sheet> | ||
</v-dialog> | ||
</template> | ||
|
||
<script setup> | ||
const emit = defineEmits(["close"]); | ||
const props = defineProps({ | ||
show_dialog: { type: Boolean, required: true }, | ||
}); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<template> | ||
<v-dialog | ||
v-model="props.show_dialog" | ||
@click:outside="emit('close')" | ||
max-width="800px" | ||
class="text-center" | ||
> | ||
<v-sheet border="md"> | ||
<v-card color="#3c9983"> | ||
<v-card-title> | ||
<h3 class="mt-4">Open Project</h3> | ||
</v-card-title> | ||
<v-card-text> | ||
<v-container> | ||
<v-row> | ||
<v-col> | ||
<v-file-input label="Open Project" required></v-file-input> | ||
</v-col> | ||
</v-row> | ||
</v-container> | ||
</v-card-text> | ||
<v-card-actions justify-center> | ||
<v-btn | ||
variant="outlined" | ||
color="white" | ||
text | ||
@click="emit('close')" | ||
class="ml-8 mb-4" | ||
>Close</v-btn | ||
> | ||
<v-btn | ||
variant="outlined" | ||
class="mb-4" | ||
color="white" | ||
text | ||
@click="emit('close')" | ||
>Load</v-btn | ||
> | ||
</v-card-actions> | ||
</v-card> | ||
</v-sheet> | ||
</v-dialog> | ||
</template> | ||
|
||
<script setup> | ||
const emit = defineEmits(["close"]); | ||
const props = defineProps({ | ||
show_dialog: { type: Boolean, required: true }, | ||
}); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.