Install FishtVue with Vite

Setting up FishtVue in a Vite project.

Download

FishtVue is available for download on npm registry.

npm install fishtvue

Plugin

FishtVue plugin is required to be installed as an application plugin to set up the default configuration. The plugin is lightweight, and only utilized for configuration purposes.

import { createApp } from 'vue';
import FishtVue from 'fishtvue/config';

const app = createApp(App);
app.use(FishtVue);

Theme

Configure FishtVue to use a theme like Aura.

import { createApp } from 'vue';
import FishtVue from 'fishtvue/config';
import Aura from '@fishtvue/themes/aura';

const app = createApp(App);
app.use(FishtVue, {
    theme: {
        preset: Aura
    }
});

Verify

Verify your setup by adding a component such as Button. Each component can be imported and registered individually so that you only include what you use for bundle optimization. Import path is available in the documentation of the corresponding component.

import Button from 'fishtvue/button'

const app = createApp(App);
app.component('Button', Button);

Next Steps

Welcome to the FishtVue Ecosystem! Once you have FishtVue up and running, we recommend exploring the following resources to gain a deeper understanding of the library.

Global configuration

Learn about the global configuration options for FishtVue.


Customization of styles

Choose from a variety of pre-styled themes or develop your own in FishtVue.

© 2025 FishtVue by Egoka