Kim

Results 8 comments of Kim

The type checking from `vscode` is fine, but running `pnpm run test-dts-only` doesn't pass the type checking in `tsconfig.build.json`, so I'll see what the problem is tomorrow, and I'm going...

Writing `declare global` in a file is not visible to the user, which is somewhat problematic here.

This will prevent the collection of dependencies. https://github.com/vuejs/core/blob/a95554d35c65e5bfd0bf9d1c5b908ae789345a6d/packages/reactivity/src/effect.ts#L213-L222

https://github.com/vuejs/core/blob/a95554d35c65e5bfd0bf9d1c5b908ae789345a6d/packages/reactivity/src/computed.ts#L55-L64 @lidlanca There is also handling of duplicate triggers in computed, but this does not seem to fix the problem, it only solves the dependency collection on the `_value` attribute,...

@lidlanca I don't have such a usage scenario, I was struggling to understand the `reactivity` source code and when I saw the type signature of the `reactive()`, I realized that...

微前端架构,提供总线注册机制,使用systemjs加载各个spa。https://github.com/hubvue/Micro-FE

> 1. 通过iframe嵌套的方式,实现多项目复用(没啥技术含量,组件、数据之间交互别想了) > 2. 核心代码发布到统一的工具云上,各个项目就引用工具壳去从远端加载。 > eg. 比如react项目里要引用一个vue项目的组件。可以把vue的这个组件单独做成包发布出去,react项目引用一个转换包去加载。 老铁,为什么要用iframe?难道不考虑性能吗? 完全可以考虑微前端架构,组件项目间通讯提供一个统一的通信机制就可以了。 https://github.com/hubvue/Micro-FE

@alexinea Can you provide a minimal reproduction procedure?