|
@@ -2,10 +2,12 @@ window.Vue = require('vue');
|
|
import BootstrapVue from 'bootstrap-vue'
|
|
import BootstrapVue from 'bootstrap-vue'
|
|
import InfiniteLoading from 'vue-infinite-loading';
|
|
import InfiniteLoading from 'vue-infinite-loading';
|
|
import Loading from 'vue-loading-overlay';
|
|
import Loading from 'vue-loading-overlay';
|
|
|
|
+import VueTimeago from 'vue-timeago'
|
|
|
|
|
|
Vue.use(BootstrapVue);
|
|
Vue.use(BootstrapVue);
|
|
Vue.use(InfiniteLoading);
|
|
Vue.use(InfiniteLoading);
|
|
Vue.use(Loading);
|
|
Vue.use(Loading);
|
|
|
|
+Vue.use(VueTimeago);
|
|
|
|
|
|
pixelfed.readmore = () => {
|
|
pixelfed.readmore = () => {
|
|
$('.read-more').each(function(k,v) {
|
|
$('.read-more').each(function(k,v) {
|
|
@@ -81,6 +83,11 @@ Vue.component(
|
|
require('./components/PostComments.vue')
|
|
require('./components/PostComments.vue')
|
|
);
|
|
);
|
|
|
|
|
|
|
|
+Vue.component(
|
|
|
|
+ 'timeline',
|
|
|
|
+ require('./components/Timeline.vue')
|
|
|
|
+);
|
|
|
|
+
|
|
Vue.component(
|
|
Vue.component(
|
|
'passport-clients',
|
|
'passport-clients',
|
|
require('./components/passport/Clients.vue')
|
|
require('./components/passport/Clients.vue')
|