I added the styles as stated here: http://monterail.github.io/vue-multiselect/#sub-getting-started
<template lang="html">
<div id="app">
<multiselect v-model="multitags.selected" :options="multitags.list" :multiple="true" :close-on-select="false" :clear-on-select="false" :hide-selected="true" placeholder="Pick some" label="title" track-by="id" @search-change="fetchTags"></multiselect>
</div>
</template>
<script>
import Multiselect from 'vue-multiselect'
export default {
//
}
</script>
<style src="vue-multiselect/dist/vue-multiselect.min.css"></style>
Everything works, but there are no styles.
It looks like this:

What is the problem? There are no errors in the browser console. Styles on the page in the browser are not connected.
Have you installed using the @next tag?
Like
npm install vue-multiselect@next --save
@shentao Yes. I installed just that.
yarn add vue-multiselect@next
If I write, for example, this code:
<style src="vue-multiselect/disssst/vue-multiselect.min.css"></style>
I'll get an error about the nonexistent file.
But if I write correctly:
<style src="vue-multiselect/dist/vue-multiselect.min.css"></style>
There will be no errors in the browser console.
That鈥檚 weird. Have you checked if the styles are added within the <head> tag? Also please make sure to not use scoped there.
@shentao If I add this code to the <head> of the page:
<style src="https://unpkg.com/[email protected]/dist/vue-multiselect.min.css"></style>
Styles are connected on the page. But they are not used (no properties).

I meant the <style> tag inside <head>
@shentao Yes. That's exactly what I did.
Weird. Could you try adding @import vue-multiselect/dist/vue-multiselect.min.css within the style tag? They should show up inside <head> :S
I'm using like this:
import Multiselect from 'vue-multiselect'
import 'vue-multiselect/dist/vue-multiselect.min.css'
And it's working just fine.
@afuno It should be working. Maybe there are some problems within your setup itself? Can鈥檛 think about any other possible problem here. :/
why css file not load in package?
i am using npm install vue-multiselect --save
not load with vue-multiselect@next
only way import 'vue-multiselect/dist/vue-multiselect.min.css'
this problem is rational?
Most helpful comment
I'm using like this:
import Multiselect from 'vue-multiselect'
import 'vue-multiselect/dist/vue-multiselect.min.css'
And it's working just fine.