29 lines
635 B
Vue
29 lines
635 B
Vue
<template>
|
|
<div style="width: 100%">
|
|
<Row type="flex" justify="center">
|
|
<AddRecipeModal style="margin-bottom: 20px"/>
|
|
</Row>
|
|
<Row type="flex" justify="center">
|
|
<SearchRecipe style="width: 80%"/>
|
|
</Row>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import AddRecipeModal from "../../components/Recipes/AddRecipeModal";
|
|
import SearchRecipe from "../../components/Recipes/SearchRecipe";
|
|
|
|
export default {
|
|
name: 'recipes',
|
|
auth: false,
|
|
components: {
|
|
AddRecipeModal,
|
|
SearchRecipe
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|