siberiadev

Results 5 comments of siberiadev

> Try this solution. Works for me > > `npm install inputmask --save` > > Then add to main.js > > ```js > import Inputmask from 'inputmask' > > Vue.directive('mask',...

Yeah, when I console my refs I can see flickity object, but when I’m trying to call .on event it callback an error I told you before. Any ideas? ср,...

> setTimeout(() => { this.$refs.flickity.on('change', (event) => { this.$emit('change', event); }); }, 1000); YEAH!!! IT WORKS!! THANKS

I just tested this template and I recognize that PWA doesn't work with SPA mode. I use asyncData to get data from API, and when I switch nuxt to SPA...

This is a full working example for Nuxt.js: 1) Install vue-infinite-loading `npm install vue-infinite-loading -S` 2) Create new js file in your /plugins folder of nuxt (/plugins/infinite-loading.js) ``` import Vue...