id: ecosystem-preact title: single-spa-preact
sidebar_label: Preact
single-spa-preact是个帮助类库,通过实现生命周期函数 (bootstrap, mount and unmount),可以帮助开发者在single-spa中快速注册 Preact应用。仓库地址见 single-spa-preact github 。
安装
npm install --save preact
快速开始
在项目的入口文件添加如下代码:
import preact from 'preact';
import rootComponent from './path-to-root-component.js';
import singleSpaPreact from 'single-spa-preact';
const preactLifecycles = singleSpaPreact({
preact,
rootComponent,
domElementGetter: () => document.getElementById('main-content'),
});
export const bootstrap = preactLifecycles.bootstrap;
export const mount = preactLifecycles.mount;
export const unmount = preactLifecycles.unmount;
选项
在调用singleSpaPreact(opts)
方法时,opts
参数会将所有选项传递给single-spa-preact。选项如下:
preact
: (必填) Preact对象,一般挂载在window上,也可以通过require('preact')
或import preact from 'preact'
引入rootComponent
: (必填) 将要渲染的Preact应用根组件domElementGetter
: (必填) 这个参数是个函数,没有入参,返回一个DOM元素。这个DOM元素会作为该Preact应用初始化、挂载和卸载的对象
当前内容版权归 single-spa 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 single-spa .