1rosehip / jplist-es6

jPList is a JavaScript library for sorting, pagination and filtering of any HTML structure like DIVs, UL/LI, tables, etc.
https://www.jplist.org/
MIT License
83 stars 39 forks source link

Vue.js and JPlist #63

Open carpabg opened 4 years ago

carpabg commented 4 years ago

Hi, I was using JPlist and it works perfectly. But when I start using vue.js it stop workig. I just added vue.js <script src="https://cdn.jsdelivr.net/npm/vue@2.6.11"></script> and then wrapped all (including the JPlist element) in <div id="wrapper"></div> which is vue App element.

If I remove the app script it works okey again, even though the vue.js is included.

new Vue({
    delimiters: ["${","}"],
    mixins: [CommonMixin],
    store,
    created() {
    }
}).$mount('#wrapper');

There's any type of incompatibility between Vue.js ad JPlist?