0.0.10-development • Published 10 months ago

sb-nuxt-fork v0.0.10-development

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

Important Note:

This is only a temporary fork of the original work of hirotaka. This repository will not be maintained.

Storybook Addon Nuxt

Important note: This fork is not maintained. It's a temporary fork with some fixes out of open PRs from the original repo by hirotaka https://github.com/hirotaka/storybook-addon-nuxt

Storybook Addon Nuxt

This add-on makes it easier to set up Storybook in your Nuxt3 project.

Supported Features

  • Auto Imports
  • NuxtLink

Since we're still in the early stages of the project, there are several features that we still need to tackle. We're open to hearing your requests for features and will address them in the order we receive them. Please feel free to let us know what you need without hesitation.

Requirements

  • Nuxt >= 3.x
  • Storybook >= 7.x

Examples

Getting Started

Installation

First setup Storybook.

In your Nuxt project directory:

npx storybook@latest init --type vue3 --builder vite

Install storybook-addon-nuxt using npm:

npm install --save-dev storybook-addon-nuxt

Or yarn:

yarn add --dev storybook-addon-nuxt

Register the Addon in main.js

// .storybook/main.js

module.exports = {
  // other config ommited for brevity
  addons: [
    // ...
    'storybook-addon-nuxt'
    // ...
  ]
}