Delayed update of variables within tab headers when using template tag
See original GitHub issueBug Report
Delayed update of variables within tab headers when using
<b-tab>
<template slot="title">{{ tab.title }}</template>
</b-tab>
When editing the variables values via an input field bound with v-model, the title is updated normally when using <b-tab :title="tab.title">
but has a delay of one character using the template tag.
The Bug can be verified in this example.
https://codesandbox.io/s/2z1qppyk2j
Another verified problem occurs when inserting a v-model bound input field within the template tag.
<b-tab>
<template slot="title">
<input v-model="tab.title">
</template>
</b-tab>
Issue Analytics
- State:
- Created 5 years ago
- Comments:11 (5 by maintainers)
Top Results From Across the Web
Tabs title slot is not reactive · Issue #1677 · bootstrap-vue ...
When using a template slot to display a badge in the tab title I've found that the badge doesn't update when the data...
Read more >How to dynamically change header based on AngularJS ...
I just discovered a nice way to set your page title if you're using routing: JavaScript: var myApp = angular.module('myApp', ['ngResource']) myApp.config( ...
Read more >Create a dynamic tab component with Angular | juri.dev
The purpose of this article is to learn about the concept of dynamic components and template references in Angular by building a dynamic...
Read more >Working with message templates - HowTo-Outlook
Working with message templates can be a great way to save some time composing emails or answering repeated requests.
Read more >Get the most out of Insomnia to effectively test your API - Medium
They can be used almost everywhere in Insomnia: request body, auth, query parameters, headers… Use ^Space to open the template tags ...
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’m afraid it won’t get fixed any time soon
Closing in favour of #2148