Socket
Socket
Sign inDemoInstall

@storybook/vue3-webpack5

Package Overview
Dependencies
Maintainers
29
Versions
764
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@storybook/vue3-webpack5

Storybook for Vue 3: Develop Vue 3 Components in isolation with Hot Reloading.


Version published
Weekly downloads
22K
increased by4.82%
Maintainers
29
Weekly downloads
 
Created

Changelog

Source

7.0.0-beta.26 (January 14, 2023)

Features
  • Core: Expose port from buildDevStandalone #20575
  • CLI: Add auto-migration for MDX html-type comments to JS-type comments #20349
Bug Fixes
  • API: Fix typing on useArgs #20610
  • Addon-docs: Fix docs crash by simplifying element before stringify #19188
  • Vite: Fix duplicate code in preview #20594
  • Addons: Warn when addon is not installed #20455
  • Blocks: Handle undefined extractComponentDescription #20590
Maintenance
  • CLI: Fix removal of --no-dll flag #20589
  • SvelteKit: Automatically support Kit-specific features #20239
Build
  • Build: Fix issue with jest projects matching ui/node_modules #20601
  • TypeScript: Fix typings files to ensure check command succeeds #20605
  • CLI: Fix repros creation not working on windows #20606
  • Build: Fix template stories to make them work with stricter Typescript settings #20591
  • Build: Allow creating internal templates that extend others and pass main.js options #20054

Readme

Source

Storybook for Vue 3

Storybook for Vue 3 is a UI development environment for your Vue 3 components. With it, you can visualize different states of your UI components and develop them interactively.

Storybook Screenshot

Storybook runs outside of your app. So you can develop UI components in isolation without worrying about app specific dependencies and requirements.

Getting Started

cd my-vue3-app
npx storybook init

For more information visit: storybook.js.org


Storybook also comes with a lot of addons and a great API to customize as you wish. You can also build a static version of your Storybook and deploy it anywhere you want.

Extending the Vue application

Storybook creates a Vue 3 application for your component preview which can be imported as import { app } from '@storybook/vue3'.

When using global custom components (app.component), directives (app.directive), extensions (app.use), or other application methods, you will need to configure those in the ./storybook/preview.js file.

For example:

// .storybook/preview.js

import { app } from '@storybook/vue3';

app.use(MyPlugin);
app.component('my-component', MyComponent);
app.mixin({
  /* My mixin */
});

Keywords

FAQs

Package last updated on 13 Jan 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc