-
-
Notifications
You must be signed in to change notification settings - Fork 5k
Closed
Description
Would be nice to see this feature to match routes without being case sensitive, can be global or attached to a map, example:
router.map({
'/abc': {
caseInsensitive: true,
component: require('./components/abc.vue')
},
'/def': {
caseInsensitive: false, // default to false
component: require('./components/def.vue')
}
})
Amin52J, judocode and SlyNet