unbyte

Results 37 comments of unbyte
trafficstars

> Would you mind listing some of the major areas you see where this library has fallen behind Avalonia? Version😂. One thing I can remember is transparent windows are supported...

works well ```javascript const useTele = () => { const target = ref(null) return () => target } const useThisTele = useTele() createApp({ setup() { return { target: useThisTele() }...

I'm very sorry that I've been busy with my graduation project in recent months. My work mainly focuses on the database field, so I haven't paid much attention to the...

This doesn't seem to be a common requirement. I've written 30+ macros for my project with this plugin, but I haven't encountered async scenario yet. Can you describe the usage...

I'm sure async functions won't lead to what I worried about before, but I need to rethink the design of related API.

Hi could you provide a minimal reproducible example? I guess you didn't use `{ code: '...' }`? https://github.com/typed-macro/typed-macro/blob/master/packages/core/README.md#organize-your-macros

I'm afraid I misunderstood your issue.😂 You want to provide a dynamic virtual module with a default export, right? That is, you want the virtual module `'@macros/route'` that macros can...

Currently the default import works the same as `import * as name from '...'`. So you can use it like ``` import router from '@macros/router' router.routes() ``` Your use case...

I hold the same idea, so the title is `may cause confusion`. maybe it should be a documentation work, or let Vue remind devs in development mode that these are...

@joyeecheung > Shouldn't we extract the sourceURL using the V8 API as well? This is what I want to do. In fact I initiated this PR after identifying several issues...