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.17 (December 30, 2022)

Bug Fixes
  • Svelte: Do not warn about .svelte files in storyStoreV7 #20442
  • Core: Fix import paths on Windows #20430
  • UI: Set min-height relative to the viewport and the zoom level. #20352
Maintenance
  • Docs: Use stories-mdx and autodocs tags instead of standalone: false in index #20424
  • Docs: Use 'stories-mdx' tag to indicate story defined in MDX file #20417
  • Preact-Vite: Minor readme and dependency cleanups #20432
Build
  • Tech: ESLint allow devDependencies imports in prebundled packages #20440
  • Fix yarn task command on Windows machines #20431

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 30 Dec 2022

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