[Vuejs]-Vue-flatpickr-component has weird styling

0👍

You sure you have the .css loaded? It should be imported on it’s own, right after you import the package:

<script>
  import flatPickr from 'vue-flatpickr-component';
  import 'flatpickr/dist/flatpickr.css';

  ...
</script>

Leave a comment