pleroma-fe/src/main.js

51 lines
1.4 KiB
JavaScript
Raw Normal View History

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'
2016-11-06 20:46:01 +00:00
import PublicAndExternalTimeline from './components/public_and_external_timeline/public_and_external_timeline.vue'
2016-10-28 13:19:42 +00:00
import FriendsTimeline from './components/friends_timeline/friends_timeline.vue'
import Conversation from './components/conversation/conversation.vue'
import Mentions from './components/mentions/mentions.vue'
2016-10-26 17:03:55 +00:00
2016-10-27 16:03:25 +00:00
import statusesModule from './modules/statuses.js'
import usersModule from './modules/users.js'
import apiModule from './modules/api.js'
2016-10-26 17:03:55 +00:00
Vue.use(Vuex)
Vue.use(VueRouter)
const store = new Vuex.Store({
modules: {
2016-10-27 16:03:25 +00:00
statuses: statusesModule,
users: usersModule,
api: apiModule
2016-10-26 17:03:55 +00:00
}
})
const routes = [
2016-11-06 20:46:01 +00:00
{ path: '/', redirect: '/main/all' },
{ path: '/main/all', component: PublicAndExternalTimeline },
2016-10-28 13:19:42 +00:00
{ path: '/main/public', component: PublicTimeline },
{ path: '/main/friends', component: FriendsTimeline },
{ name: 'conversation', path: '/notice/:id', component: Conversation },
{ name: 'mentions', path: '/:username/mentions', component: Mentions }
2016-10-26 17:03:55 +00:00
]
2016-11-06 19:26:07 +00:00
const router = new VueRouter({
mode: 'history',
2016-11-24 17:24:35 +00:00
routes,
scrollBehavior: (to, from, savedPosition) => {
return savedPosition || { x: 0, y: 0 }
}
2016-11-06 19:26:07 +00:00
})
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 }
})