https://github.com/adrianhurt/vue-values
A set of simple composable functions and components to handle simple values.
https://github.com/adrianhurt/vue-values
composables hooks stored synchronized use value vue vue-values vue3 vuejs
Last synced: 4 months ago
JSON representation
A set of simple composable functions and components to handle simple values.
- Host: GitHub
- URL: https://github.com/adrianhurt/vue-values
- Owner: adrianhurt
- License: mit
- Created: 2020-06-14T13:10:27.000Z (over 5 years ago)
- Default Branch: develop
- Last Pushed: 2022-12-14T05:20:53.000Z (about 3 years ago)
- Last Synced: 2025-08-25T06:57:01.479Z (5 months ago)
- Topics: composables, hooks, stored, synchronized, use, value, vue, vue-values, vue3, vuejs
- Language: JavaScript
- Homepage: https://adrianhurt.github.io/vue-values
- Size: 4.18 MB
- Stars: 10
- Watchers: 1
- Forks: 0
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vue-values
A set of simple components to handle simple values.
# Documentation
Please, check the [documentation page here](https://adrianhurt.github.io/vue-values/).
## Install
```
yarn add vue-values
```
or
```
npm install vue-values --save
```
And that's all! Here you have a simple usage example.
```vue
...
import { Value } from 'vue-values'
export default {
name: 'ValueExample',
components: { Value },
}
```