Package Exports
- sk-accordion-default
- sk-accordion-default/index.js
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 (sk-accordion-default) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Skinny Widgets Accordion for Default Theme
accordion element
npm i sk-accordion sk-accordion-default --savethen add the following to your html
<sk-config
theme="antd"
base-path="/node_modules/sk-core/src"
theme-path="/node_modules/sk-theme-default"
></sk-config>
<sk-accordion id="accordion">
<sk-tab title="foo">
some foo tab contents
</sk-tab>
<sk-tab title="bar">
some bar tab contents
</sk-tab>
<sk-tab title="baz">
some baz tab contents
</sk-tab>
</sk-accordion>
<script type="module">
import { SkAccordion } from './node_modules/sk-accorion/index.js';
customElements.define('sk-accordion', SkAccordion);
</script>attributes
disabled - all tabs disabled
mono - open only one tab at once
template
id: SkAccordionTpl