EOS Low-Code Platform 8 EOS Low-Code Platform 8
产品简介
安装部署
应用开发
专题场景实战案例
低代码(Low-Code)开发参考手册
高开开发参考手册
流程开发参考手册
AFCenter 使用指南
Governor 使用指南
升级手册
FAQ
8.3.2更新说明
  • PmHamburger
  • 基本用法
  • Attributes
  • Events

# PmHamburger

# 基本用法

img-hamburger-01.png
<template>
   <pm-hamburger :toggle-click="toggleSideBar" :is-active="opened" />
</template>
<script>
export default {
  data() {
    return {
      opened: false
    }
  },
  methods: {
    toggleSideBar() {
      this.opened = !this.opened
    }
  }
}
</script>

# Attributes

参数 说明 类型 可选值 默认值
opened 是否展开 boolean — false

# Events

事件名称 说明 回调参数
toggle-click 点击控件的回调 -

← 滑动验证 点击复制 →