Skip to content

Commit

Permalink
Update bootstrap vue version
Browse files Browse the repository at this point in the history
Update tooltips and carousel
  • Loading branch information
cristijora committed Oct 31, 2019
1 parent 452982c commit d1e9fca
Show file tree
Hide file tree
Showing 4 changed files with 3,193 additions and 2,764 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"lint": "vue-cli-service lint"
},
"dependencies": {
"bootstrap-vue": "^2.0.0-rc.11",
"bootstrap-vue": "^2.0.4",
"flatpickr": "^4.5.1",
"nouislider": "^11.1.0",
"register-service-worker": "^1.5.2",
Expand Down
4 changes: 2 additions & 2 deletions src/views/components/Carousel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
</section>
</template>
<script>
import BCarousel from "bootstrap-vue/es/components/carousel/carousel";
import BCarouselSlide from "bootstrap-vue/es/components/carousel/carousel-slide";
import { BCarousel } from "bootstrap-vue/esm/components/carousel/carousel";
import { BCarouselSlide } from "bootstrap-vue/esm/components/carousel/carousel-slide";
export default {
components: {
Expand Down
8 changes: 4 additions & 4 deletions src/views/components/JavascriptComponents/Tooltips.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@
</div>
</template>
<script>
import BTooltip from "bootstrap-vue/es/directives/tooltip/tooltip";
import BPopover from "bootstrap-vue/es/directives/popover/popover";
import { VBTooltip } from "bootstrap-vue/esm/directives/tooltip/tooltip";
import { VBPopover } from "bootstrap-vue/esm/directives/popover/popover";
export default {
directives: {
BTooltip,
BPopover
BTooltip: VBTooltip,
BPopover: VBPopover,
}
};
</script>
Loading

0 comments on commit d1e9fca

Please sign in to comment.