pleroma-fe/src/main.js

51 行
1.4 KiB
JavaScript
Raw 通常表示 履歴

2016-10-26 23:46:32 +09:00
import Vue from 'vue'
2016-10-27 02:03:55 +09: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-07 05:46:01 +09:00
import PublicAndExternalTimeline from './components/public_and_external_timeline/public_and_external_timeline.vue'
2016-10-28 22:19:42 +09: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-27 02:03:55 +09:00
2016-10-28 01:03:25 +09:00
import statusesModule from './modules/statuses.js'
import usersModule from './modules/users.js'
import apiModule from './modules/api.js'
2016-10-27 02:03:55 +09:00
Vue.use(Vuex)
Vue.use(VueRouter)
const store = new Vuex.Store({
modules: {
2016-10-28 01:03:25 +09:00
statuses: statusesModule,
users: usersModule,
api: apiModule
2016-10-27 02:03:55 +09:00
}
})
const routes = [
2016-11-07 05:46:01 +09:00
{ path: '/', redirect: '/main/all' },
{ path: '/main/all', component: PublicAndExternalTimeline },
2016-10-28 22:19:42 +09: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-27 02:03:55 +09:00
]
2016-11-07 04:26:07 +09:00
const router = new VueRouter({
mode: 'history',
2016-11-25 02:24:35 +09:00
routes,
scrollBehavior: (to, from, savedPosition) => {
return savedPosition || { x: 0, y: 0 }
}
2016-11-07 04:26:07 +09:00
})
2016-10-26 23:46:32 +09:00
/* eslint-disable no-new */
new Vue({
2016-10-27 02:03:55 +09:00
router,
store,
2016-10-26 23:46:32 +09:00
el: '#app',
template: '<App/>',
components: { App }
})