Cameron Audet

Results 15 comments of Cameron Audet

you should be able to use the serializer ``` :data="associative_array" :serializer="myvar=> myvar.keywithstringfromassociative_array" ```

> @alexurquhart, > > I have an object array and I want to search it with different properties at the same time. I guess, there is not any way to...

I used this package https://www.npmjs.com/package/scrollmagic-plugin-gsap here is what my file looks like ``` import * as ScrollMagic from "scrollmagic"; import { TweenMax, TweenLite, TimelineMax, CSSPlugin, ScrollToPlugin, Draggable } from "gsap/all";...

It could be a syntax thing, Read the migration docs ![image](https://user-images.githubusercontent.com/6738453/78732045-7bfefc00-790f-11ea-8a21-e6d6b5cd9209.png) https://greensock.com/3-migration/#gsap

> This doesn't work for GSAP 3... > > ``` > Uncaught ReferenceError: TweenMax is not defined > at animation.gsap.js:39 > at Object../node_modules/imports-loader/index.js?define=>false!./node_modules/scrollmagic/scrollmagic/uncompressed/plugins/animation.gsap.js (animation.gsap.js:44) > ``` There is a current...

have a vue croppie fiddle?

> We developed this library using Vue2, so it is supported. > > Perhaps we use an older version of vue-material that is not compatible with yours ? I think...

@scottgutman you could use headless chrome to render the html via puppeteer (npm and node based)

this issue was solved with ``` { test: /\.m?js$/, exclude: /node_modules\/(?!(vue-mapbox)\/).*/, //this fixed it, use: [ { loader: 'babel-loader', options: { presets: [ ['@babel/preset-env', { debug: true, useBuiltIns: 'usage' }],...

> I think I solved it. I used this code instead: > > ``` > use ResetsPasswords, CorcelResetsPasswords { > CorcelResetsPasswords::resetPassword insteadof ResetsPasswords; > CorcelResetsPasswords::guard insteadof ResetsPasswords; > } >...