diff --git a/.babelrc b/.babelrc new file mode 100644 index 0000000..b500af9 --- /dev/null +++ b/.babelrc @@ -0,0 +1,6 @@ +{ + "presets": [ + ["latest", { "modules": false }], + "stage-2" + ] +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6ea2b8d --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +node_modules/ +dist/ +*.log diff --git a/README.md b/README.md new file mode 100644 index 0000000..7bb11a1 --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ +# Stock Trader + +A simple VueJS app that makes use of [Vuex](https://github.com/vuejs/vuex) and [vue-router](https://github.com/vuejs/vue-router) + +### Build Setup + +- `yarn` _or_ `npm install` to install dependencies +- `npm run dev` to serve with hot reload at _localhost:8080_ +- `npm run build` to build for production with minification + + +For detailed explanation on how things work, consult the [docs for vue-loader](http://vuejs.github.io/vue-loader). diff --git a/index.html b/index.html new file mode 100644 index 0000000..7b21852 --- /dev/null +++ b/index.html @@ -0,0 +1,14 @@ + + +
+ +Your Funds: {{ funds | currency }}
+