mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-09 03:04:54 -04:00
Confirmation.vue start
This commit is contained in:
parent
cd4694d85e
commit
1aa9cbeebb
9
.gitignore
vendored
9
.gitignore
vendored
@ -9,6 +9,7 @@ docs/site/
|
|||||||
mealie/data/backups/*
|
mealie/data/backups/*
|
||||||
mealie/data/debug/*
|
mealie/data/debug/*
|
||||||
mealie/data/img/*
|
mealie/data/img/*
|
||||||
|
!mealie/dist/*
|
||||||
|
|
||||||
#Exception to keep folders
|
#Exception to keep folders
|
||||||
!mealie/dist/.gitkeep
|
!mealie/dist/.gitkeep
|
||||||
@ -19,12 +20,12 @@ mealie/data/img/*
|
|||||||
|
|
||||||
.DS_Store
|
.DS_Store
|
||||||
node_modules
|
node_modules
|
||||||
/dist
|
|
||||||
|
|
||||||
# local env files
|
# local env files
|
||||||
.env.local
|
.env.local
|
||||||
.env.*.local
|
.env.*.local
|
||||||
.env.development
|
|
||||||
|
|
||||||
# Log files
|
# Log files
|
||||||
npm-debug.log*
|
npm-debug.log*
|
||||||
@ -49,7 +50,7 @@ pnpm-debug.log*
|
|||||||
env/
|
env/
|
||||||
build/
|
build/
|
||||||
develop-eggs/
|
develop-eggs/
|
||||||
dist/
|
|
||||||
downloads/
|
downloads/
|
||||||
eggs/
|
eggs/
|
||||||
.eggs/
|
.eggs/
|
||||||
@ -144,5 +145,3 @@ ENV/
|
|||||||
|
|
||||||
# Node Modules
|
# Node Modules
|
||||||
node_modules/
|
node_modules/
|
||||||
|
|
||||||
/*.env.development*
|
|
1
frontend/.env.development
Normal file
1
frontend/.env.development
Normal file
@ -0,0 +1 @@
|
|||||||
|
VUE_APP_API_BASE_URL=http://10.10.10.12:9921
|
@ -3,22 +3,12 @@
|
|||||||
<v-card :loading="processing">
|
<v-card :loading="processing">
|
||||||
<v-card-title class="headline"> From URL </v-card-title>
|
<v-card-title class="headline"> From URL </v-card-title>
|
||||||
|
|
||||||
<v-card-text>
|
<v-card-text> </v-card-text>
|
||||||
<v-form>
|
|
||||||
<v-text-field v-model="recipeURL" label="Recipe URL"></v-text-field>
|
|
||||||
</v-form>
|
|
||||||
|
|
||||||
<v-alert v-if="error" color="red" outlined type="success">
|
|
||||||
Looks like there was an error parsing the URL. Check the log and
|
|
||||||
debug/last_recipe.json to see what went wrong.
|
|
||||||
</v-alert>
|
|
||||||
</v-card-text>
|
|
||||||
|
|
||||||
<v-divider></v-divider>
|
|
||||||
|
|
||||||
<v-card-actions>
|
<v-card-actions>
|
||||||
<v-spacer></v-spacer>
|
<v-spacer></v-spacer>
|
||||||
<v-btn color="primary" text @click="createRecipe"> Submit </v-btn>
|
<v-btn color="primary" text @click="createRecipe"> Exit </v-btn>
|
||||||
|
<v-btn color="primary" text @click="confirm"> Confirm </v-btn>
|
||||||
</v-card-actions>
|
</v-card-actions>
|
||||||
</v-card>
|
</v-card>
|
||||||
</v-dialog>
|
</v-dialog>
|
||||||
@ -36,6 +26,9 @@ export default {
|
|||||||
confirm() {
|
confirm() {
|
||||||
this.$emit("confirm");
|
this.$emit("confirm");
|
||||||
},
|
},
|
||||||
|
exit() {
|
||||||
|
// do something?
|
||||||
|
}
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
0
mealie/dist/.gitkeep
vendored
Normal file
0
mealie/dist/.gitkeep
vendored
Normal file
Loading…
x
Reference in New Issue
Block a user