We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following code should render two controls (as shown in the documentation), however no controls are rendered.
<template #controls> <!-- no controls are rendered --> <HstSelect title="Color" v-model="state.color" :options="colors" /> <HstText title="Label" v-model="state.label" /> </template>
Wrapping both controls inside a container solves the issue:
<template #controls> <!-- two controls are rendered --> <div> <HstSelect title="Color" v-model="state.color" :options="colors" /> <HstText title="Label" v-model="state.label" /> </div> </template>
I provided a Nuxt Stackblitz reproduction, with two <Variant>s of <BaseButton>, reproducing the bug.
<Variant>
<BaseButton>
Nuxt Stackblitz
System: OS: Linux 5.0 undefined CPU: (8) x64 Intel(R) Core(TM) i9-9880H CPU @ 2.30GHz Memory: 0 Bytes / 0 Bytes Shell: 1.0 - /bin/jsh Binaries: Node: 18.18.0 - /usr/local/bin/node Yarn: 1.22.19 - /usr/local/bin/yarn npm: 10.2.3 - /usr/local/bin/npm pnpm: 8.14.0 - /usr/local/bin/pnpm npmPackages: @histoire/plugin-nuxt: ^0.17.10 => 0.17.10 @histoire/plugin-vue: ^0.17.11 => 0.17.11 histoire: ^0.17.9 => 0.17.9
npm
The text was updated successfully, but these errors were encountered:
Start a new pull request in StackBlitz Codeflow.
Sorry, something went wrong.
Experiencing the same issue. This was working fine till @histoire/[email protected]
@histoire/[email protected]
Most likely #673 broke this?
No branches or pull requests
Describe the bug
The following code should render two controls (as shown in the documentation), however no controls are rendered.
Wrapping both controls inside a container solves the issue:
I provided a Nuxt Stackblitz reproduction, with two
<Variant>
s of<BaseButton>
, reproducing the bug.Reproduction
Nuxt Stackblitz
System Info
Used Package Manager
npm
Validations
The text was updated successfully, but these errors were encountered: