2016-10-26 14:46:32 +00:00
|
|
|
import Vue from 'vue'
|
2016-10-26 17:03:55 +00:00
|
|
|
import VueRouter from 'vue-router'
|
|
|
|
import Vuex from 'vuex'
|
|
|
|
import App from './App.vue'
|
|
|
|
import PublicTimeline from './components/public_timeline/public_timeline.vue'
|
|
|
|
|
|
|
|
import statuses from './modules/statuses.js'
|
|
|
|
|
|
|
|
Vue.use(Vuex)
|
|
|
|
Vue.use(VueRouter)
|
|
|
|
|
|
|
|
const store = new Vuex.Store({
|
|
|
|
modules: {
|
|
|
|
statuses
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
const routes = [
|
|
|
|
{ path: '/', redirect: '/main/public' },
|
|
|
|
{ path: '/main/public', component: PublicTimeline }
|
|
|
|
]
|
|
|
|
|
|
|
|
const router = new VueRouter({routes})
|
2016-10-26 14:46:32 +00:00
|
|
|
|
|
|
|
/* eslint-disable no-new */
|
|
|
|
new Vue({
|
2016-10-26 17:03:55 +00:00
|
|
|
router,
|
|
|
|
store,
|
2016-10-26 14:46:32 +00:00
|
|
|
el: '#app',
|
|
|
|
template: '<App/>',
|
|
|
|
components: { App }
|
|
|
|
})
|