https://github.com/adrianhurt/vue-route-values
A set of simple components to manage route and query params using Vue Router
https://github.com/adrianhurt/vue-route-values
param query router vue vuejs
Last synced: 8 months ago
JSON representation
A set of simple components to manage route and query params using Vue Router
- Host: GitHub
- URL: https://github.com/adrianhurt/vue-route-values
- Owner: adrianhurt
- License: mit
- Created: 2020-07-02T14:54:11.000Z (almost 6 years ago)
- Default Branch: develop
- Last Pushed: 2023-07-14T19:49:52.000Z (almost 3 years ago)
- Last Synced: 2025-08-27T21:25:14.554Z (8 months ago)
- Topics: param, query, router, vue, vuejs
- Language: JavaScript
- Homepage: https://adrianhurt.github.io/vue-route-values
- Size: 1.9 MB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vue-route-values
A set of simple components to manage route and query params using Vue Router.
# Documentation
Please, check the [documentation page here](https://adrianhurt.github.io/vue-route-values/).
And here [some live examples](https://adrianhurt.github.io/vue-route-values-examples/).
## Install
```
yarn add vue-route-values
```
or
```
npm install vue-route-values --save
```
And that's all! Here you have a simple usage example.
```vue
import { RouteQueryValue } from 'vue-route-values'
export default {
name: 'RouteQueryValueExample',
components: { RouteQueryValue },
}
```