Illya Klymov
Illya Klymov
 # :question: What is it? Version of Bootstrap-Vue which works for Vue 2 and Vue 3 (using `@vue/compat`) Helps people with #5196 [Demo using Vue 2](https://bootstrap-vue-3.netlify.app/vue2/) [Demo using Vue...
# TL;DR (last update: May 21, 2024) ✅ v.2.23.0 with initial support of Vue.js 3 released :tada: This code will be deprecated in favor of code being developed in https://github.com/bootstrap-vue-next/bootstrap-vue-next...
### Vue version 3.2.40 ### Link to minimal reproduction https://stackblitz.com/edit/vitejs-vite-5cyxjs?file=src%2Fmain.js ### Steps to reproduce It will raise exception immediately ### What is expected? `foo` text is rendered ### What is...
`stubs` has an important limitation for years - you can't stub anonymous component. Let me show that in code: ```js const AnonymousComponent = { template: 'anonymous' } const Component =...
I'm struggling to understand the reasoning, why `global.components` perform two things simultaneously: * registers global components (this is perfectly fine) * acts as `global.stubs`, but just for component we are...