Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/emanguy/vuetest
Doing some testing with Vue to see how it feels
https://github.com/emanguy/vuetest
Last synced: 7 days ago
JSON representation
Doing some testing with Vue to see how it feels
- Host: GitHub
- URL: https://github.com/emanguy/vuetest
- Owner: emanguy
- Created: 2018-07-06T05:52:13.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-07-06T05:52:32.000Z (over 6 years ago)
- Last Synced: 2024-10-12T01:41:12.386Z (about 1 month ago)
- Language: Vue
- Size: 69.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Messing with Vue.js
I wanted to try getting into Vue after Polymer never really got the attention that I would
have liked it to have. In order to do so, I wrote up this simple webpage based on the vue starter
project which takes a list of grocery list categories in JS, then lets you add items in those categories.This is a really interesting project for me because I really wanted to test how dynamic an app in Vue.js
could really get, and it worked out pretty well!## Running
I wrote this project using the Vue CLI and Yarn. Assuming you already have yarn:
yarn global add @vue/cli
yarn install
You can now serve the webpage using `yarn run serve` and run the unit tests I wrote with `yarn run test:unit`.