Theo Ephraim
Theo Ephraim
By default, `loadRows` just automatically loads the header row for you, since in 90% of use cases, you are working with an existing sheet that already has the header set...
Try without the self closing tag, ie `` I've had this same problem with other similar tools as well...
I also had trouble withe `PascalCase` component names. Try remapping the name to kebab case. ``` const WithHello = VueComponentWith({ 'hello-world': HelloWorld }); ``` Also annoying and should be fixed...
@lobo-tuerto - I'm able to use those above tips, but would definitely love to avoid both of them... Please share if you find anything interesting about how you worked around...
Also running into something like this when trying to have pnpm coexist with volta. While having pnpm manage the node version is a noble mission, it seems that the existence...
Trying to get similar support in Volar - see https://github.com/johnsoncodehk/volar/issues/783
I was also excited to find this library, as the TS types on [`caolan/async`](https://caolan.github.io/async) haven't been great. But was sad when I realized a lot of the object related utils...
Seems like this should maybe just be an option on how row.delete works? Or perhaps it should be the default? I suspect most folks don't really care... I think the...
@NewCoderOnTheBlock - apologies if I sounded dismissive - I meant most folks that aren't paying attention to the history like you wouldn't care if it worked this way (totally removing...
the row based API uses the [spreadsheets.values](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values) api which only includes values. If you want to deal with formatting, you'll have to use the cell-based methods, which are unfortunately a...