Ching 97f7345aa6 feat(mobile recipe list / recipe create / week recipe page): [A] 增加移动版页面
[A] 增加移动版页面

Signed-off-by: Ching <loooching@gmail.com>
2021-10-07 04:13:15 +08:00

30 lines
478 B
Vue

1<template>
<recipe_list />
<tabbar />
</template>
<script>
// import { Tabbar, TabbarItem } from 'vant';
import recipe_list from '@/components/recipe-mobile/recipe-list.vue';
import tabbar from '@/components/recipe-mobile/tabbar.vue';
export default {
name: 'RecipeMobileHome',
components: {
tabbar,
recipe_list,
},
data: function() {
return {};
},
mounted() {},
methods: {},
};
</script>
<style>
body {
background-color: #f7f8fa;
}
</style>