GrapevineLin

Results 14 comments of GrapevineLin

```ts import { createSSRApp } from 'vue' import { createPinia } from 'pinia' import App from './App.vue' export function createApp() { const app = createSSRApp(App) app.use(createPinia()) return { app }...

我做了一个使用简单,无侵入式的 跨分包自定义组件引用解决方案 [PR-5822](https://github.com/dcloudio/uni-app/pull/5822) ,使用时只需要一行注释: **基础用法:** ```javascript /* @uni-async-component */ import EcCanvas from '@/subPackageB/components/ec-canvas' export default { components: { EcCanvas } } ``` **高级配置:** ```javascript /* @uni-async-component {"placeholder": "view", "platform": "mp-weixin,mp-alipay"}...