After including
<style src="vue-multiselect/dist/vue-multiselect.min.css">
in my Vue component, I noticed that the styles are applied when running npm run dev
, but not when running npm run prod
. How can I resolve this issue?
<template>
<multi-select :id="id" v-model="value" :options="options" :multiple="multiple" :max="max"></multi-select>
</template>
<script>
import multiSelect from 'vue-multiselect';
export default {
name: "my-multi-select",
components: { multiSelect },
}
</script>
<style src="vue-multiselect/dist/vue-multiselect.min.css"></style>