Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aturingmachine/vue-training
VueJS training for UWP App Factory
https://github.com/aturingmachine/vue-training
Last synced: about 1 month ago
JSON representation
VueJS training for UWP App Factory
- Host: GitHub
- URL: https://github.com/aturingmachine/vue-training
- Owner: aturingmachine
- License: mit
- Created: 2017-10-24T01:10:30.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-07T18:08:41.000Z (about 7 years ago)
- Last Synced: 2024-10-23T08:16:24.605Z (3 months ago)
- Language: Vue
- Size: 93.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Vue-Training
This project is a basic Single Page Application built using [Vue](https://vuejs.org/) and [Vuetify](https://vuetifyjs.com/vuetify/quick-start).
This project makes remote API calls to a Node-Express server running locally, found [here](https://github.com/aturingmachine/mean-training).## Installation
Simply clone this repo:
`git clone https://github.com/aturingmachine/vue-training.git `
`cd `
`npm install`
`npm run dev`
The application will watch for changes made to the files and restart as needed during development.
### Deployment
`npm run build` will bundle and minify the project for deployment to whereever you want.
### Project Structure
`/src`
`--/config/`-Stores Axios setup
`--/pages/`--Has all the Vue components we will need
`--/router/`-Router config for the [vue-router](https://github.com/vuejs/vue-router) we use for SPA
`--/stylus/`-Stylings for the application
`--/App.vue`-Main Vue component, contains the Toolbar, Nav-Drawer, and Footer w/ the router view
`--/main.js`-Driver for the application