Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thinkswan/vue-todos-vuex
A Vue todo app that uses Vuex for state management.
https://github.com/thinkswan/vue-todos-vuex
javascript tutorial vue vuex
Last synced: about 2 months ago
JSON representation
A Vue todo app that uses Vuex for state management.
- Host: GitHub
- URL: https://github.com/thinkswan/vue-todos-vuex
- Owner: thinkswan
- Created: 2020-07-04T17:34:26.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-03-09T15:26:17.000Z (almost 4 years ago)
- Last Synced: 2023-03-11T18:28:19.321Z (almost 2 years ago)
- Topics: javascript, tutorial, vue, vuex
- Language: Vue
- Homepage: https://vue-todos-vuex.netlify.app/
- Size: 170 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vue-todos-vuex
A Vue.js todo app that uses Vuex for state management.
Based on the following tutorial:
- [Traversy Media: Vuex Crash Course | State Management](https://www.youtube.com/watch?v=5lVQgZzLMHc)
## Get started
```
# Install dependencies
yarn install# Start development server with hot reloading
yarn serve
open http://localhost:8080/# Compile and minify for production
yarn build# Lint and fix files
yarn lint
```## Helpful docs
- [Vue.js guide](https://vuejs.org/v2/guide/)
- [Vue CLI guide](https://cli.vuejs.org/guide/)
- [Vuex guide](https://vuex.vuejs.org/guide/)