mirror of
https://github.com/nuxt/nuxt.git
synced 2025-01-19 09:55:53 +00:00
Clean custom-routes example
This commit is contained in:
parent
cbba9d0631
commit
6ab9f138c4
@ -1,11 +1,4 @@
|
||||
const axios = require('axios')
|
||||
|
||||
module.exports = {
|
||||
env: {
|
||||
token: 'Hello :)',
|
||||
num: 3,
|
||||
bool: true
|
||||
},
|
||||
router: {
|
||||
routes: [
|
||||
{ name: 'user', path: '/users/:id(\\d+)', component: 'pages/_user' }
|
||||
@ -13,17 +6,5 @@ module.exports = {
|
||||
},
|
||||
build: {
|
||||
vendor: ['axios']
|
||||
},
|
||||
generate: {
|
||||
routeParams: {
|
||||
'/users/:id(\\d+)': function () {
|
||||
return axios.get('http://jsonplaceholder.typicode.com/users')
|
||||
.then((res) => {
|
||||
return res.data.map((user) => {
|
||||
return { id: user.id }
|
||||
})
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user