I can't get the fullscreen button to show as documented here. I have added css and js sources so they are available in the browser:
I can add the is-fullscreen class to my parent carousel, getting fullscreen to kick in, but I just can't get the buttons to show up.
My flickity component (in pug) looks like:
flickity(class="carousel" ref="flickity" :options="flickityOptions" v-if='lotsLoaded')
  .carousel-cell(v-for='lot in lots')
    img(:src='lot.item.primary_image')
My flickity options (in coffeescript) are:
flickityOptions:
  prevNextButtons: true
  fullscreen: true
EDIT1: For my own troubleshooting, I am using the following libraries:
- vue-flickity (
vue-flickity@^1.1.2), which depends on:flickity "^2.1.1"but in my Source Panel (webpack:///./node_modules/flickity/js/index.js) the file shows:Flickity v2.2.0
 flickity-fullscreen@^1.1.1which depends on:flickity "^2.1.0"