Vuetify in Storybook

Shaun Evening
Storybook
4 min readJan 19, 2023

--

App design can be complex, with many options for fonts, typography, spacing and colors. Vuetify simplifies this by offering pre-designed themeable components for a cohesive look, based on Google’s Material Design guidelines.

Storybook is a frontend workbench for building UIs in isolation. By combining Storybook and Vuetify, you can build UIs faster without all the grunt work. As of Storybook 7.0, this is even easier with out of the box Vite support. This post will show you how to integrate these two tools to create a powerful and flexible development environment for building user interfaces with Vuetify.

In this post, we will explain how to:

  • 🔌 Setup Vuetify with Storybook
  • 🧱 Use Vuetify in your components
  • 🎨 Switch Vuetify themes in a click

If you’d like to see the example code of this recipe, check out the example repository on GitHub. Let’s get started!

A finished example of Vuetify working in Storybook with a theme switcher

Register Vuetify in Storybook

To get started, you’ll need to add Vuetify’s fontloader and plugin to your Storybook configuration. To do this, add the following to your .storybook/preview.js file:

// .storybook/preview.js
import { setup } from "@storybook/vue3";
import { registerPlugins } from "../src/plugins";

setup((app) => {
// Registers your app's plugins into Storybook
registerPlugins(app);
});

Here registerPlugins loads Vuetify’s fonts and registers all of its components with Storybook’s Vue app.

Using Vuetify Components

Let’s update some of our example components to use Vuetify instead. We’ll use the Button component in ./src/stories/button.vue.

The base example button story from stroybook

Currently, it’s not looking very Vuetiful so let’s make some changes. Replace the contents of ./src/stories/Button.vue with the following code:

<template>
<v-btn type="button" color="primary" @click="onClick" :variant="variant" :size="size">{{ label }}</v-btn>
</template>

<script>
import { reactive, computed } from 'vue';
export default {
name: 'my-button',
props: {
label: {
type: String,
required: true,
},
primary: {
type: Boolean,
default: false,
},
size: {
type: String,
validator: function (value) {
return ['small', 'large'].indexOf(value) !== -1;
},
},
backgroundColor: {
type: String,
},
},
emits: ['click'],
setup(props, { emit }) {
props = reactive(props);
return {
onClick() {
emit('click');
},
variant: computed(() => props.primary ? 'flat' : 'outlined'),
}
},
};
</script>

Now looking back at Storybook, our button is now the Vuetify button. It even changed in the page-level stories.

Updating the base button example story to use Vuetify’s button component

Add a theme switcher tool using globalTypes

Vuetify comes out of the box with a light and dark theme but you can override them and add more. To get the most out of your stories, you should have a way to toggle between all of your themes.

Switching from light theme to dark theme for Vuetify components in Storybook

To add a theme switcher, declare a global variable named theme in .storybook/preview.js and give it a list of supported themes to choose from.

// .storybook/preview.js
export const globalTypes = {
theme: {
name: "Theme",
description: "Global theme for components",
toolbar: {
icon: "paintbrush",
// Array of plain string values or MenuItem shape (see below)
items: [
{ value: "light", title: "Light", left: "🌞" },
{ value: "dark", title: "Dark", left: "🌛" },
],
// Change title based on selected value
dynamicTitle: true,
},
},
};

This code will create a new toolbar dropdown to select your desired theme for your stories.

Add a withVuetifyTheme decorator

There needs to be a way to tell Vuetify to use the theme selected in the toolbar. This can be done using a decorator.

Below I created a new file in .storybook called withVuetifyTheme.decorator.js that will take our global theme value and update Vuetify’s current theme.

// .storybook/withVeutifyTheme.decorator.js
import { useTheme } from "vuetify";

export const DEFAULT_THEME = "light";
export const withVuetifyTheme = (story, context) => {
const globalTheme = context.globals.theme || DEFAULT_THEME;
return {
components: { story },
setup() {
const theme = useTheme();
theme.global.name.value = globalTheme;
return {
theme,
};
},
template: `<story />`,
};
};

Now give this decorator to Storybook to wrap our stories in. To do this, add the decorator to the decorator array in .storybook/preview.js

// .storybook/preview.js
import { setup } from "@storybook/vue3";
import { registerPlugins } from "../src/plugins";
import { withVuetifyTheme } from "./withVuetifyTheme.decorator";

setup((app) => {
// Registers your app's plugins into Storybook
registerPlugins(app);
});

/* snipped for brevity */

export const decorators = [withVuetifyTheme];

Wrapping up

Vuetify offers a large collection of readymade Material Design components to make building Vuetiful UIs a breeze. In just a few steps, you can setup Vuetify in Storybook to create a powerful development environment.

Get involved

If you use Vuetify at work, we’d love your help making an addon that automatically applies the configuration above. Join the maintainers in Discord to get involved, or jump into addon docs.

--

--