Works with both Vue 2 , Vue 3 And React.
import '@company-ui/style';
import CompanyUI from '@company-ui/vue';
app.use(CompanyUI);
<autocomplete v-model="value" />
import '@company-ui/style';
import { AutoComplete } from '@company-ui/react';
<AutoComplete
popupAppendToBody={false}
defaultValue={inputValue}
value={inputValue}
onChange={setInputValue}
></AutoComplete>
import '@company-ui/style';
import { Autocomplete } from '@company-ui/dom';
new Autocomplete({
target: '#example',
});
To learn more, check its documentation.
Feel free to dive in! Open an issue or submit PRs.
Standard Readme follows the Contributor Covenant Code of Conduct.
This project exists thanks to all the people who contribute.
MIT © MichaelSun