This repository was archived by the owner on Dec 26, 2018. It is now read-only.

Description
Getting the following error on the next branch:
[Vue warn]: The client-side rendered virtual DOM tree is not matching server-rendered content. This is likely caused by incorrect HTML markup, for example nesting block-level elements inside <p>, or missing <tbody>. Bailing hydration and performing full client-side render.
code looks like:
<div class="overflow" >
<v-touch class="inner"
:style="innerStyle"
v-on:swipeleft="next"
v-on:swiperight="prev" >
<slot></slot>
</v-touch>
</div>
I know it's the v-touch component causing the error, since when I delete the component, the error goes away.