import { nextTick, css, html, Component, bind } from '@bd/core' class Dropdown extends Component { bar = 'balbal' mounted() { console.log('Dropdown: ', this.$refs) bind(this.$refs.balbal, 'mousedown', ev => { console.log('aa : mousedown') }) } foo() { console.log('foo: click') } render() { return html`
dsdsd
${this.bar}
` } } Dropdown.reg('dropdown')