const menus = require('../menus/index.js') module.exports = { async home(ctx, next) { await menus.getAll(ctx, next); await ctx.render('home', { data: JSON.stringify(ctx.body.data) }) } };