break resources in multiple json files & add to vuex module store

This commit is contained in:
Kevin Van Der Werff
2019-06-22 03:28:33 +02:00
parent 23416bccd2
commit f1a8d056d7
19 changed files with 1039 additions and 1012 deletions

29
resources/index.js Normal file
View File

@@ -0,0 +1,29 @@
import css from './css'
import daily from './daily'
import design from './design'
import frontend from './frontend'
import fullstack from './fullstack'
import general from './general'
import html from './html'
import javascript from './javascript'
import php from './php'
import python from './python'
import ruby from './ruby'
import server from './server'
import utility from './utility'
export default [
css,
daily,
design,
frontend,
fullstack,
general,
html,
javascript,
php,
python,
ruby,
server,
utility,
]