# RightMenu 右键菜单
WuRightMenu 是一个基于 WebComponent 的右键菜单插件,可以通过 HTML 标签以及 new 两种方式调用。
npm install "@wu-component/wu-right-menu"
// OR
yarn add "@wu-component/wu-right-menu"
# HTML 方式
import "@wu-component/wu-right-menu";
Copy
# Attributes
参数 | 说明 | 类型 | 可选值 | 默认值 |
---|---|---|---|---|
list | 菜单配置(需要序列化成字符串) | Menu[] | -- | [] |
# Event
方法名 | 说明 | 方法 |
---|---|---|
menuclick | 单个菜单点击 | () => boolean |
# new 方式
import { RightMenuCore } from "@wu-component/wu-right-menu";
import "@wu-component/wu-right-menu/dist/index.css";
new 的方式需要手动引入 css 文件。
Copy
# Options
参数 | 说明 | 类型 | 可选值 | 默认值 |
---|---|---|---|---|
menu | 菜单配置 | Menu[] | -- | [] |
el | 点击触发的Dom | HTMLElement | -- | null |
clickCallback | 点击回调 | Function | -- | null |