-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3a72b5e
commit 21f22f9
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Client-Side Vue.js | ||
|
||
Vue.js client-side for tiny, quick-loading, node.js-less Single Page Apps. | ||
Breakdown | ||
client-side-vue/ | ||
index.html - The entry-point for your Single Page App. Global dependencies via script tags (Vue, Vue-Router, Http-Vue-Loader, Axios) and a single #App element where the vue instance will be rendered. | ||
index.js - Where Vue.js, Vue-Router are instantiated, where you'll import and assign your services to the Vue instance. | ||
index.css - Global styles for your Single Page App. | ||
index.php - Trick Heroku into hosting our static site. | ||
client-side-vue/dependencies/ | ||
vue.js - Vue.js itself and all the built-in features that come with it. | ||
vue-router.js - The official router for Vue.js, allows you to navigate your Single Page App. | ||
http-vue-loader.js - Client-side .vue component loader. | ||
axios.js - Promise based HTTP client for making ajax/http calls. | ||
client-side-vue/services | ||
store.service.js - A (very, extremely) simple state-management service with only three methods, get(), set(), and clear(). |