--- id: webpack title: Webpack ---
## Importing JavaScript Import Multiple Select’s JavaScript by adding this line to your app’s entry point (usually `index.js` or `app.js`): ```js import 'multiple-select/dist/multiple-select.js' ``` Of course, you can also import locales you need: ```js // import locale import 'multiple-select/dist/locale/multiple-select-zh-CN.js' ``` By default, Multiple Select is dependent on [jQuery](https://jquery.com/), these are defined as peerDependencies, this means that you will have to make sure to add both of them to your `package.json` using `npm install --save jquery`. ## Importing CSS Import Multiple Select’s CSS by adding this line to your app’s entry point: ```js import 'multiple-select/dist/multiple-select.min.css' ``` ## Usage ```vue