Tobias Diez
Tobias Diez
It's perhaps not super important but it's more convenient. Once you have configured your preferred abbreviation in the cleanup dialog, it's only one click after an import to properly format...
There were a couple of breaking changes in v8, see https://github.com/storybookjs/storybook/issues/26031. I still have to look into this.
@floroz any idea concerning the second point? The generated code currently looks like ``` const _sfc_main = { setup(__props, { expose: __expose }) { __expose(); const MyComponent = {}; const...
I would compare this to `export default` in plain vue. In this case, you also need to use `script` instead of `script setup`. On the positive side, the following works...
@floroz Does this look good to you?
With a fresh look after some time, I came to the conclusion that it doesn't really make sense at the moment to really ship vue components. The way the vite...
:robot: Release is at https://github.com/tobiasdiez/storybook-vue-addon/releases/tag/v0.5.0 :sunflower:
Yes, the new indexer api is nice - at least in principle. One still has to implement the transpiling to csf: https://github.com/storybookjs/storybook/blob/next/docs/api/main-config-indexers.md#transpiling-to-csf And I'm not sure how to hook into...
I agree for simple templates there is little advantages over having multiple story defs. But if the story template gets more involved, you don't want to copy-paste it to every...
Looks like a nice proposal. The args can also be specified only for a single story, right? So maybe adding a `args` props to `Stories` and `Story`? What do you...