0.13.0 • Published 5 years ago

custom-select-mixins v0.13.0

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

custom-select-mixins

import CustomSelectorMixin from 'custom-select-mixins';
import {define} from './node_modules/backed/src/utils/define.js';

class CustomSelector extends CustomSelectorMixin(HTMLElement) {
  constructor() {
    super();
  }
}

define(CustomSelector); // or customElements.define('custom-selector', CustomSelector)