30 lines
478 B
Vue
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>
|