Bob Lee
Bob Lee
Current version `0.0.4` doesn't seem to work with Angular 5 yet. Downgraded to Angular 4.4.6 and got SSR back to work.
Thanks @Merott, I ended up doing: ```js // test/setupTest.js (jest setup) const components = [ '../components/MyComponentA.vue', '../components/MyComponentB.vue', ] components.forEach((path) => { const name = path.match(/(\w*)\.vue$/)[1]; Vue.component(`${name}`, require(path).default); }); ``` then...
Having the same problem, not sure how to take advantage from those new `GraphQLQuery` and `GraphQLSubscription` types mentioned by @manueliglesias , I ended up doing below (type cast `as any`),...
@mix91 I have iPhone5s and can play movies on Chrome or Safari browsers. On motionEye settings, Movie Format is set to `H.264/OMX (.mp4)`.
had this issue with `[email protected]`, `getCurrentInstance` gave me a `proxy` that has `_bv__toast`: ``` import { getCurrentInstance } from 'vue' const instance = getCurrentInstance() console.log('getCurrentInstance', instance.proxy._bv__toast) // ... ```
One piece of information about this bug: behaves well until I added 'append-to-body'. If I set it true, I got this bug.. opacitiy remains zero on click whereas 'select2-display-none' class...
On select.js 0.19.5, the problem was on scope.calculateDropdownPos() function, it is failing to call calculateDropdownPosAfterAnimation() where opacity is being set to 1. In my case, the problem occurs only when...