Я предлагаю добавить ниже код jQuery для полного решения, чтобы отключить и скрыть вертикальную полосу прокрутки:
var nice =
$(this.refs.container).niceScroll({
cursorcolor: '#f16221',
cursorwidth: '14',
cursorminheight: '64',
scrollspeed: '50',
autohidemode: 'false',
overflowy: 'false'
});
var _super = nice.getContentSize;
nice.getContentSize = function () {
var page = _super.call(nice);
page.h = nice.win.height();
return page;
}
$('.nicescroll-rails.nicescroll-rails-vr').remove();
(частично упоминается на https://code.google.com/archive/p/jquery-nicescroll/issues/27 )