You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
444 B

export default function (req, res, next) {
// req is the Node.js http request object
console.log('middle')
// res is the Node.js http response object
// next is a function to call to invoke the next middleware
// Don't forget to call next at the end if your middleware is not an endpoint!
next()
}
//// Clickout.vue
// async asyncData(context) {
// const id = context.req.body.id;
// return { id }
// }