Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 613 Bytes

config-vue.md

File metadata and controls

20 lines (13 loc) · 613 Bytes

Configure Vue

Slidev uses Vue 3 to render the application on the client side. You can extend the app to add custom plugins or configurations.

Create ./setup/main.ts with the following content:

import { defineAppSetup } from '@slidev/types'

export default defineAppSetup(({ app, router }) => {
  // Vue App
  app.use(YourPlugin)
})

This could also be used as the main entrance of your Slidev app to do some initializations before the app starts.

Learn more: Vue Application API.