import './index.less'; import $ from 'jquery'; import '@backset/ui/dist/ui.css'; import { Dropdown, Input } from '@backset/ui'; $(function () { new Dropdown({ selector: '.ttt', onChange: () => { console.log('change'); }, }); new Input(); });