vue-chat-scroll-image
v1.0.3
Published
Automatic, yet conditional, scroll-to-bottom directive for Vue.js 2.0, images loaded and tigger scroll down
Downloads
31
Maintainers
Readme
vue-chat-scroll-image
Forked from
Added new feature trigger scroll down when image messages loaded.
Installation
NPM / Yarn
Run
npm install --save vue-chat-scroll-image
, oryarn add vue-chat-scroll-image
With Modules
// ES6 import Vue from 'vue' import VueChatScroll from 'vue-chat-scroll-image' Vue.use(VueChatScroll) // ES5 var Vue = require('vue') Vue.use(require('vue-chat-scroll-image'))
<script>
IncludeJust include
./dist/vue-chat-scroll-image.js
after Vue itself.
Usage
There's nothing you need to do in JavaScript except for installation. To use the plugin, simply use the v-chat-scroll
directive.
<ul class="messages" v-chat-scroll @scroll-top="loadNewData()">
<li class="message" v-for="n in messages">{{ n }}</li>
</ul>
Prevent scroll down when user has scrolled up
Alternatively, you can pass a config value to the directive:
<ul class="messages" v-chat-scroll="{always: false, smooth: true, scrollonremoved:true}">
<li class="message" v-for="n in messages">{{ n }}</li>
</ul>
Scroll when images loaded
<ul class="messages" v-chat-scroll="{ image: true }">
<li class="message" v-for="n in messages">
<img src="IMAGE PATH" />
</li>
</ul>