B-Tab No longer works in IE 11 due to find() method
See original GitHub issueDescribe the bug
In IE11 B-Tabs produces this error
Error in nextTick: “TypeError: Object doesn’t support property or method ‘find’” found in BTabs
Steps to reproduce the bug
My Code utilizing B-Tabs
<b-tabs class='mx-4'>
<b-tab title="test 1"
key="1"
active
v-on:click="SetFocus(0)">
--- Components in different <b-row></b-row>
</b-tab>
<b-tab title="test 2"
key="2"
v-on:click="SetFocus(0)">
--- Components in different <b-row></b-row>
</b-tab>
<b-tab title="Activity"
key="3"
v-on:click="SetFocus(0)">
--- Components in different <b-row></b-row>
</b-tab>
</b-tabs>
Expected behavior
This is a recent issue and my assumption is with a recent release? I updated from rc14 to rc19
Versions
Libraries: “axios”: “^0.18.0”, “bootstrap”: “^4.3.1”, “bootstrap-vue”: “^2.0.0-rc.19”, “vue”: “^2.6.8”, “vue-class-component”: “^7.0.1”, “vue-property-decorator”: “^7.3.0”, “vue-router”: “^3.0.1”, “vue-session”: “^1.0.0”, “vuex”: “^3.1.0”, “vuex-class”: “^0.3.1”, “vuex-module-decorators”: “^0.8.0”
Additional context
Issue Analytics
- State:
- Created 4 years ago
- Comments:8 (5 by maintainers)
Top Results From Across the Web
Internet Explorer (IE) mode troubleshooting and FAQ
Troubleshooting guide and FAQ for Microsoft Edge Internet Explorer mode.
Read more >Internet Explorer 11 has retired and is officially out of support ...
The retired, out-of-support Internet Explorer 11 desktop application is scheduled to be permanently disabled through a Microsoft Edge update ...
Read more >Javascript IE detection, why not use simple conditional ...
Marcel Korpel's answer no longer works (in IE 10 it returns undef, so IE 10 appears as not being IE). NOTE: Now updated...
Read more >Impact of Internet Explorer 11 end-of-life on Acrobat and ...
Learn about the impact of Internet Explorer 11 end-of-life on Acrobat and Acrobat Reader desktop apps.
Read more >Internet Explorer 11 will no longer be supported ... - SAP Blogs
SAP UI Technologies supports a range of browsers and platforms e.g. Chrome, Firefox, Microsoft New Edge (Chromium) and Safari. For details see ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
If serving your app over the web, you can use https://polyfill.io, which only delivers polyfills needed by the browser (based on the browsers User-Agent string).
Fixed the URL typo in my above comment…
Here is the polyfill.io URL we recommend (as there are quite a few other things we use that is not supported in some older browsers):
//polyfill.io/v3/polyfill.min.js?features=es2015%2CMutationObserver
Which also includes MutationObserver polyfill needed for some components.
Only the polyfills needed by the browser are downloaded.