An open API service indexing awesome lists of open source software.

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

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



prev
{{ value }}

next

import { RouteQueryValue } from 'vue-route-values'

export default {
name: 'RouteQueryValueExample',
components: { RouteQueryValue },
}

```