Getting started
Installation
Install Chūshō with your favorite package manager:
npm install chusho
yarn add chusho
pnpm add chusho
Setup
In your main entry point, enable Chūshō with:
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.