mattsteve

Results 6 comments of mattsteve

@tafelnl > public class MainActivity extends AppCompatActivity { > > @Override public void onStart() { > super.onStart(); > Uri data = getIntent() != null ? getIntent().getData() : null; > >...

Since they just made the fix so you can add a custom event to handle tab buttons (not yet published to npm), you can do this manually, assuming named views...

There appears to be an incompatibility with how Vue 3 handles template refs. https://github.com/bootstrap-vue/bootstrap-vue/blob/dev/src/components/tabs/tabs.js#L420 https://github.com/bootstrap-vue/bootstrap-vue/blob/dev/src/components/tabs/tabs.js#L592 `this.$refs.buttons` ends up pointing to a single button (it's not an array as expected) with...

Inherited attributes don't appear to be working on at least some components, like ``. Template: ```html ``` Actual Rendered Markup: ```html ```

The `getInstanceFromVNode` method requires a development build of Vue 3 compat in order to work. Otherwise, you'll run into issues like popovers not closing. https://github.com/bootstrap-vue/bootstrap-vue/blob/vue3-compat-build/src/utils/get-instance-from-vnode.js#L4 The library will need to...

I believe this can be achieved with just using webpack aliases. The only problems you might run into at that point are typescript, which can be ignored with `any` casts....