Steven Ferrer

Results 12 comments of Steven Ferrer
trafficstars

I was also having this issue, _I selected all the linting tools_ (ESLint, Prettier, Lint staged files, StyleLint) and then when I run `yarn dev`, I get stuck in the...

I tried importing it as a nuxt plugin. ```js // ~/plugins/product-zoomer.js import Vue from 'vue' import ProductZoomer from 'vue-product-zoomer' Vue.use(ProductZoomer) ``` ```js // nuxt.config.js ... plugins: [ ... { src:...

Here's my setup: **plugin/vue-keycloak.js** ```JavaScript import Vue from 'vue' import VueKeyCloak from '@dsb-norge/vue-keycloak-js' // You can also pass in options. Check options reference below. Vue.use(VueKeyCloak, { config: { url: 'http://keycloakserver/auth',...

As per [README](https://github.com/soheilhy/cmux#limitations), you'll have to match with writers. ```go grpcl := m.MatchWithWriters(cmux.HTTP2MatchHeaderFieldSendSettings("content-type", "application/grpc")) ```

@pengzhaocheng16 that would be great too, please let me know if you have a working fork that implements a p2p network, i would really appreciate it

You can do something like below. ```vue let HollowDotsSpinner = null if (process.client) { HollowDotsSpinner = require('epic-spinners').HollowDotsSpinner } export default Vue.extend({ components: { HollowDotsSpinner, }, }); ```

Hi @qmuntal, thank you very much for your response and apologies for my late reply. The reason that we wanted to explicitly pass the `tx` as an argument instead of...

> ...On top of that, I don't think that wrapping db.BeginTx() in the context is worst that passing it as a variadic argument, both needs to type cast an interface....

Thanks @websanova for your prompt response. I wasn't really familiar with Laravel so I have to search for some guides on how to set it up. I found [this](https://gist.github.com/hootlex/da59b91c628a6688ceb1) gist...