Issayah
Issayah
> This is marked as completed, however, I have not been able to make it work. Also getting `Failed to resolve directive: b-tooltip`. Is there any example? I'm using >...
Ngl I didn't think that stuff on the container even worked so I removed it. But I guess it did work. Honestly, I thought the toasts didn't work at all.
> They did work... > > Would you please add that back and make a new release? https://github.com/cdmoro/bootstrap-vue-3/pull/806
> is the new release not available on the documentation, or is there something else broken with toasts? > > trying the [toasts doc page](https://cdmoro.github.io/bootstrap-vue-3/components/Toast.html#variants) doesn't render ANY toast... Toast...
Fixed 0.15
Fixed 0.15
Should be next on the list of things to do for v0.8.0
Fixed in v0.8.0. However, it should be noted that "right" and "left" props are removed - use "alignEnd" and "alignStart" respectively
```ts const count = ref(0); const newRules = { value: { maxLength: maxLength(5) } } const newerV$ = useVuelidate(newRules, count); ``` Should be changed to ```ts const count = ref(0);...