Add `BvEvent` and `BvModalEvent` TypeScript definitions
See original GitHub issueI’m using bootstrap-vue together with TypeScript, and BvEvent
is missing from the type declarations. This is required for example in modal ok
events:
ok(evt: BvModalEvent): void {
evt.vueTarget ...
}
Issue Analytics
- State:
- Created 5 years ago
- Comments:9 (6 by maintainers)
Top Results From Across the Web
How to listen to events from bootstrap-vue modal?
So when I click on ok (next) in add-post component I want the second modal to pop up. vue.js · bootstrap-vue · Share....
Read more >Modal | Components - BootstrapVue
Modals are streamlined, but flexible dialog prompts powered by JavaScript and CSS. They support a number of use cases from user notification to...
Read more >Changelog | Misc | BootstrapVue - API Manual
Automatically adds transformAssetUrls settings for BootstrapVue component props. Reverted the es/ build directory back to mini-commonjs modules (from true ES ...
Read more >bootstrap-vue - UNPKG
utils/object'\n\nclass BvModalEvent extends BvEvent {\n constructor(type, eventInit = {}) {\n super(type, eventInit)\n // Freeze our new props as readonly, ...
Read more >bootstrap-vue | Yarn - Package Manager
... b-table: add missing sortKey field type and correct a typo (#6355 (f5ca62f) ... b-tabs: emit cancelable BvEvent before changing tabs via new...
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
I think my error falls under the same issue:
is there a workaround to fix this error? Thanks -J
PRs and help are appreciated.