可能是中国第一个如此完善的移动端web components组件库
Glue是一个基于web components构建的组件库,可以在react,vue2,vue3,angular和html等任何前端框架中,真正做到了一个组件库多框架运行
- 提供 60 多个高质量组件,覆盖移动端各类场景
- 性能极佳
- 单元测试覆盖率 90%+,提供稳定性保障
- 完善的中英文文档和示例
- 支持全平台
- 支持按需引入
- 支持主题定制
- 支持 TypeScript
npm i glue-components -S
vue中使用,参考stencil的Vue中使用使用指南
import Vue from 'vue';
import App from './App.vue';
import "glue-components/dist/glue-components/glue-components.css";
import { applyPolyfills, defineCustomElements } from 'glue-components/loader';
Vue.config.productionTip = false;
// Tell Vue to ignore all components defined in the glue-components
// package. The regex assumes all components names are prefixed
// 'test'
Vue.config.ignoredElements = [/test-\w*/];
// Bind the custom elements to the window object
applyPolyfills().then(() => {
defineCustomElements();
});
new Vue({
render: h => h(App)
}).$mount('#app');
render() {
return (
<div>
<glue-button></glue-button>
</div>
)
}
React中使用,参考stencil的React使用指南
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import "glue-components/dist/glue-components/glue-components.css";
import registerServiceWorker from './registerServiceWorker';
// test-component is the name of our made up web components that we have
// published to npm:
import { applyPolyfills, defineCustomElements } from 'glue-components/loader';
ReactDOM.render(<App />, document.getElementById('root'));
registerServiceWorker();
applyPolyfills().then(() => {
defineCustomElements();
});
render() {
return (
<div>
<glue-button></glue-button>
</div>
)
}
Angular中使用,参考stencil的Angular使用指南
import { enableProdMode } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app/app.module';
import { environment } from './environments/environment';
// Note: loader import location set using "esmLoaderPath" within the output target config
import { defineCustomElements } from 'glue-components/loader';
if (environment.production) {
enableProdMode();
}
platformBrowserDynamic().bootstrapModule(AppModule)
.catch(err => console.log(err));
defineCustomElements();
import {Component, ElementRef, ViewChild} from '@angular/core';
import 'glue-components';
@Component({
selector: 'app-home',
template: `<glue-button #test></glue-button>`,
styleUrls: ['./home.component.scss'],
})
export class HomeComponent {
@ViewChild('test') myGlueButtonComponent: ElementRef<HTMLTestComponentElement>;
async onAction() {
await this.myGlueButtonComponent.nativeElement.testComponentMethod();
}
}
Ember中使用,参考stencil的Ember使用指南
ember install ember-cli-stencil
glue 也支持按需引入、CDN 引入等方式,详细说明见 快速上手.
修改代码请阅读我们的 开发指南。
使用过程中发现任何问题都可以提 Issue 给我们,当然,我们也非常欢迎你给我们发 PR。
现代浏览器以及 Android 4.0+, iOS 8.0+, chrome 60+, Safari 10.1+,Firefox 63+,Edge 79+
可以手机扫码以下二维码访问手机端 demo: 后续支持
欢迎大家加入 Glue 交流群一起讨论,添加下方微信并注明『加入 Glue 交流群』即可
本项目基于 MIT 协议,请自由地享受和参与开源。