22 lines
360 B
Vue
22 lines
360 B
Vue
<template>
|
|
<ShowRecipe style="width: 60%"/>
|
|
</template>
|
|
|
|
<script>
|
|
import ShowRecipe from "../../components/Recipes/ShowRecipe";
|
|
|
|
export default {
|
|
components: {ShowRecipe},
|
|
validate({params}) {
|
|
return /^\d+$/.test(params.id)
|
|
},
|
|
name: '_id',
|
|
auth: false
|
|
};
|
|
</script>
|
|
|
|
|
|
<style scoped>
|
|
|
|
</style>
|