Skip to content
On this page

Getting started

NOTICE

Chūshō requires Vue.js 3

Installation

Install Chūshō with your favorite package manager:

bash
npm install chusho
bash
yarn add chusho
bash
pnpm add chusho

Setup

In your main entry point, enable Chūshō with:

js
import Chusho from 'chusho';
import { createApp } from 'vue';

const app = createApp(App);

app.use(Chusho, {
  // Here goes the config
});

See the configuration for available options.

Released under the MIT License.