fontzter
fontzter
As a workaround, I mapped the array in an intermediate then statement: ` .then(res => { return res.map(item => { item.dateField = new Date( Date.UTC(0) + (item.dateField - 2) *...
In keeping with the composition function model, I created a useVuexPathify.js file: ```js import { computed } from '@vue/composition-api' export default context => { const { $store } = context.root...
Thanks so much. I got further yesterday, but I am still having issues removing them. I want it to be dynamic so that when a user adds an image another...
I think this is doing what I want now. https://codepen.io/fontzter/pen/bvayZd I had to reference the data item with the index rather than the v-for iterator: `v-model="croppa[i]"` instead of `v-model="c"`. Also,...
So, how would I get this to work on Vue2 with composition-api and use Vite? Vite keeps throwing this error at startup: `node_modules/feathers-vuex/dist/FeathersVuexPagination.js:7:2: error: No matching export for import "h"`...