dsite/frontend/src/views/weekRecipe.vue
Ching 7f6448d0ec feat(week recipe page): [A] 增加重新生成每周菜谱逻辑;一些样式调整
[A] 增加重新生成每周菜谱逻辑;一些样式调整

Signed-off-by: Ching <loooching@gmail.com>
2021-10-03 22:35:40 +08:00

35 lines
703 B
Vue

<template>
<el-container>
<el-header>
<el-menu mode="horizontal" default-active="/week-recipe/" router>
<el-menu-item index="/">
首页
</el-menu-item>
<el-menu-item index="/week-recipe/">
每周菜谱
</el-menu-item>
</el-menu>
</el-header>
<el-main>
<el-row justify="center">
<el-col>
<week_recipe></week_recipe>
</el-col>
</el-row>
</el-main>
</el-container>
</template>
<script>
import week_recipe from '@/components/week_recipe.vue';
export default {
name: 'WeekRecipe',
components: { week_recipe },
data: function() {
return {};
},
};
</script>
<style></style>