bitbytebit1

Results 16 comments of bitbytebit1
trafficstars

Here is an example of how we are getting around this currently. If dropin.handleAction returned a promise that resolved once the QR code had finished booting up then we could...

I also frequently see this error, can confirm adding `name: 'index'` resolves the issue, can we see a fix for this in the next release?

https://github.com/liximomo/vscode-sftp/issues/919

https://github.com/liximomo/vscode-sftp/issues/919

This is something that I feel should be documented somewhere. I have prior experience with Vite and polyfills from another project and expected to be able to add the legacy...

I'm strongly against removing the pending variable. It's incredibly convenient to use and a enables a very common pattern. It works beautifully with Suspense and v-if, is very concise to...

Here's my solution, only tested in horizontal mode ``` export default function scrollSnap () { let element: HTMLElement const start = { scrollY: 0, scrollX: 0, touchX: 0, touchY: 0,...

Create a new file in the plugins folder called "apexcharts.client.js" ```js import VueApexCharts from 'vue3-apexcharts' export default defineNuxtPlugin((nuxtApp) => { nuxtApp.vueApp.component('ApexChart', VueApexCharts) }) ```