chamesu
Version:
This package contains all packages of the chat application.
28 lines (22 loc) • 579 B
JavaScript
/*
* Copyright (c) 2022.
* Author Peter Placzek (tada5hi)
* For the full copyright and license information,
* view the LICENSE file that was distributed with this source code.
*/
import Vue from 'vue'
import vueScroll from "vuescroll";
Vue.use(vueScroll);
Vue.prototype.$vuescrollConfig = {
bar: {
background: 'rgb(64,67,78)'
}
}
import InfiniteLoading from 'vue-infinite-loading';
Vue.use(InfiniteLoading, {
slots: {
// keep default styles
noResults: 'Keine weiteren Einträge',
noMore: 'Keine weiteren Einträge'
}
});