UNPKG

vue-simple-context-menu

Version:

Simple context-menu component built for Vue. Works well with both left and right clicks. Nothing too fancy, just works and is simple to use.

12 lines (10 loc) 252 B
import { defineConfig } from 'vite'; import vue from '@vitejs/plugin-vue'; export default defineConfig({ base: '/vue-simple-context-menu/', // For GitHub docs support build: { outDir: '../docs', }, plugins: [vue()], root: 'example', });