Jeff Titus

Results 14 comments of Jeff Titus

I have narrowed down the problem to the `tuneText` function. When the node's children are removed, the title element is never replaced. Please find below an edited function that seems...

This is how I've been using the library to write different types of data. Maybe it will help you: ```go // value is an interface{} // the type in go...

@GWS65 I'm curious how you are defining `value` and casting the data right now. You could try adding the [`spf13/cast`](https://github.com/spf13/cast) package to your program and use `v, err := ua.NewVariant(cast.ToUint32(value))`....

I noticed something strange while testing with Vue 3. If the Vue SFC does not import anything itself, the test coverage is reported correctly. ![image](https://user-images.githubusercontent.com/1756049/176817882-1abccf86-72c6-48b2-b948-b14893e2ed29.png) If there are any import...

@polosson That JSX doesn't look exactly correct for use with Vue. I wouldn't expect `console` to be available in the template, and `onSelect` needs to be written as a bound...

@polosson Thanks for the clarification. I guess I'm just not familiar with using the `render()` method. Sorry for doubting you!

It might be because you updated `webpack-dev-server` and `ts-loader` to new major versions, which likely have breaking changes. This is the output of `npm outdated` with the repo in its...

VuePress 2.0 (beta) with Vue 3 implementation of @trajano's code (exactly what I was looking for tonight; thank you, sir): ```js /* src/.vuepress/config.js */ import { defineUserConfig } from "@vuepress/cli";...

I assume it's the same reason as #72. You may want to put a warning in the main README stating this is the case.

I ran into this problem today also. I tried following the instructions for [systemjs-interop](https://single-spa.js.org/docs/ecosystem-vue#usage), thinking that might have been the issue, but they did not help to resolve it. Then...