Started to build out the app. Its got a basic set of features and it should really be in VC
This commit is contained in:
28
client/src/main.js
Normal file
28
client/src/main.js
Normal file
@@ -0,0 +1,28 @@
|
||||
// The Vue build version to load with the `import` command
|
||||
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
|
||||
import Vue from 'vue'
|
||||
|
||||
import Vuex from 'vuex'
|
||||
import 'es6-promise/auto' //Vuex likes promises
|
||||
import store from './stores/mainStore';
|
||||
|
||||
import App from './App'
|
||||
import router from './router'
|
||||
|
||||
import CKEditor from '@ckeditor/ckeditor5-vue';
|
||||
Vue.use( CKEditor )
|
||||
|
||||
require('./assets/semantic-min.css')
|
||||
require('./assets/semantic-helper.css')
|
||||
|
||||
Vue.use(Vuex)
|
||||
Vue.config.productionTip = false
|
||||
|
||||
/* eslint-disable no-new */
|
||||
new Vue({
|
||||
el: '#app',
|
||||
router,
|
||||
store,
|
||||
components: { App },
|
||||
template: '<App/>'
|
||||
})
|
Reference in New Issue
Block a user