Package Exports
- @forter/table
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@forter/table) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
⚠️ Forter Web Components are in development. APIs are subject to change without notice. ⚠️
@forter/table
🚛 Installation
Forter Web Components are distributed on the npm registry.
To install them to your project, use
npm install --save @forter/table🛠 Usage
After installing, you can prepare them for use in your app without fuss using @pika/web
npx @pika/webThen import into your app using module tags:
<script type="module" src="/web_modules/@forter/table.js"></script>
<fc-table></fc-table>Or you can import into your app's modules and use your build process.
import { html, render } from 'lit-html';
import '@forter/table';
render(html`<fc-table></fc-table>`, document.body)