this repo was created by running `vue create byjove` and then:

use defaults? Manually select features
features needed: Router, Vuex
use history mode for router? Yes
where to place config? In dedicated config files
save as preset? No

(and then i had to edit commit msg to add the above)
This commit is contained in:
Lance Edgar 2019-11-05 18:40:05 -06:00
commit 7e2f318f8d
16 changed files with 9435 additions and 0 deletions

18
package.json Normal file
View file

@ -0,0 +1,18 @@
{
"name": "byjove",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build"
},
"dependencies": {
"vue": "^2.6.10",
"vue-router": "^3.0.3",
"vuex": "^3.0.1"
},
"devDependencies": {
"@vue/cli-service": "^3.0.5",
"vue-template-compiler": "^2.6.10"
}
}